@charset "UTF-8";
/*
Theme Name: Newspaper Magazine Bussiness
Theme URI:
Author:
Author URI:
Description: Newspaper Magazine is a business website template
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# Block Color Palette Colors
# Sections
    ## navbar
    ## top_bar
    ## header_bottom
    ## banner
    ## banner_ads
    ## news
    ## video
    ## sports
    ## right_side_item
    ## topics
    ## widgets
    ## popular_stories
    ## recent-stories
    ## highlights
    ## trendy
    ## photogallery
    ## blog-details
    ## details_tag_area
    ## details_comments
    ## details_replay
    ## author
    ## about
    ## contact
    ## 404
    ## search_area

# Elements
    ## section_title
    ## button
    ## back_top
    ## preloader
    ## search_popup
    ## sidebars
    ## social-connects
    ## tags-area
    ## categories
    ## whats_new
    ## inner-page-menu
    ## common-socials
    ## faq

--------------------------------------------------------------*/
/* Media Queries */
/*--------------------------------------------------------------
    google fonts
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,600;1,700;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #F83A26;
  --main-color-two: #FFBA00;
  --main-color-three: #FF6A3A;
  --main-color-four: #FF695C;
  --heading-color: #1B1C25;
  --light-color: #666666;
  --extra-light-color: #999999;
  --heading-font: "Rubik", sans-serif;
  --body-font: "Roboto", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --rubik-font: "Rubik", sans-serif;
  --opensans-font: "Open Sans", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;
  --jost-font: "Jost", sans-serif;
  --playfair-font: "Playfair Display", serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--extra-light-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}

p {
  color: var(--extra-light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  p {
    -webkit-line-clamp: 2;
  }
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

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

ul li {
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

.desktop-center {
  text-align: center;
}

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

/* Firefox  */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

/* Common Style */
.margin-0 {
  margin: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.radius-parcent-50 {
  border-radius: 50%;
}

.radius-50 {
  border-radius: 50px;
}

.radius-40 {
  border-radius: 40px;
}

.radius-35 {
  border-radius: 35px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-5 {
  border-radius: 5px;
}

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

.color-light {
  color: var(--light-color) !important;
}

.color-extra-light {
  color: var(--extra-light-color) !important;
}

.color-heading {
  color: var(--heading-color);
}

.body-bg-1 {
  background: #F1F3F4;
}

.body-bg-2 {
  background: #FFFAF5;
}

.body-bg-3 {
  background: #1B1C25;
}

.bg-color-one {
  background: var(--main-color-one);
}

.bg-color-two {
  background: var(--main-color-two);
}

.bg-color-three {
  background: var(--main-color-three);
}

.bg-color-four {
  background: var(--main-color-four);
}

.bg-item-one {
  background: #FFF1E8;
}

.bg-item-two {
  background: #E9F6FF;
}

.bg-item-three {
  background: #FFECF0;
}

.bg-item-four {
  background: #FFF8F0;
}

.bg-item-five {
  background: #F7F7F6;
}

.color-one {
  color: var(--main-color-one);
}

.color-two {
  color: var(--main-color-two);
}

.color-three {
  color: var(--main-color-three);
}

.color-four {
  color: var(--main-color-four);
}

.color-yellow {
  color: #FFBA5C;
}

.footer-bg {
  background: #FFFAF5;
}

.footer-bg-2 {
  background: #22232F;
}

.footer-bg-3 {
  background: #F7F7F6;
}

.shop-color-1 {
  background: #F83A26 !important;
}

.shop-color-2 {
  background: #30BB6F !important;
}

.shop-color-3 {
  background: #AB47BC !important;
}

.shop-color-4 {
  background: #FFC576 !important;
}

.shop-color-5 {
  background: #040B25 !important;
}

.shop-color-6 {
  background: #FF9800 !important;
}

.shop-color-7 {
  background: #FF695C !important;
}

.facebook-bg {
  background-color: #3b5999 !important;
}

.twitter-bg {
  background-color: #55acee !important;
}

.pintarest-bg {
  background-color: #c40014 !important;
}

.youtube-bg {
  background-color: #ff1544 !important;
}

.instagram-bg {
  background: -webkit-gradient(linear, left bottom, left top, from(#fea038), color-stop(#ff8841), color-stop(#ff704e), color-stop(#ff575f), color-stop(#ff3e71), color-stop(#fa3080), color-stop(#f12690), color-stop(#e523a0), color-stop(#d12dac), color-stop(#bb37b7), color-stop(#a140bf), to(#8347c5)) !important;
  background: linear-gradient(to top, #fea038, #ff8841, #ff704e, #ff575f, #ff3e71, #fa3080, #f12690, #e523a0, #d12dac, #bb37b7, #a140bf, #8347c5) !important;
}

.linkedin-bg {
  background-color: #326DE4 !important;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

.border-1 {
  border: 1px solid rgba(221, 221, 221, 0.9);
}
.border-1.border-2px {
  border: 2px solid rgba(221, 221, 221, 0.9);
}
.border-1.border-3px {
  border: 3px solid rgba(221, 221, 221, 0.9);
}
.border-1.border-4px {
  border: 4px solid rgba(221, 221, 221, 0.9);
}
.border-1.border-5px {
  border: 5px solid rgba(221, 221, 221, 0.9);
}

.heading-title {
  font-size: 30px;
  line-height: 36px;
}
.heading-title:hover {
  color: var(--main-color-one);
}
.heading-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.heading-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.heading-title.hover-color-four:hover {
  color: var(--main-color-four);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .heading-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .heading-title {
    font-size: 24px;
  }
}

.common-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--heading-color);
}
.common-title.white-color {
  color: #fff;
}
.common-title:hover {
  color: var(--main-color-one);
}
.common-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title.hover-color-four:hover {
  color: var(--main-color-four);
}

.common-title-two {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.common-title-two.white-color {
  color: #fff;
}

.common-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--extra-light-color);
}
.common-para.white-color {
  color: #fff;
}

.common-price-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
}
.common-price-title.white-color {
  color: #fff;
}

.common-price-title-two {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.common-price-title-two.white-color {
  color: #fff;
}

.store-area .tab-content,
.shop-area .tab-content,
.tab-details-tab-area .tab-content {
  display: none;
}

.store-area .tab-content.active,
.shop-area .tab-content.active,
.tab-details-tab-area .tab-content.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

/* .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: 1s fade-effects;
}
 */
@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.border-1 {
  border: 1px solid #E8E8E8;
}

.slider-inner-margin .slick-slide {
  margin: 15px;
}
.slider-inner-margin .slick-list {
  margin: -15px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.nav-style-one {
  position: relative;
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
  left: -25px;
}
.nav-style-one:hover .next-icon {
  left: auto;
  right: -25px;
}
.nav-style-one.nav-color-two .prev-icon,
.nav-style-one.nav-color-two .next-icon {
  color: var(--main-color-two);
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  background: var(--main-color-two);
}
.nav-style-one.nav-color-three .prev-icon,
.nav-style-one.nav-color-three .next-icon {
  color: var(--main-color-three);
}
.nav-style-one.nav-color-three .prev-icon:hover,
.nav-style-one.nav-color-three .next-icon:hover {
  background: var(--main-color-three);
}
.nav-style-one.nav-color-four .prev-icon,
.nav-style-one.nav-color-four .next-icon {
  color: var(--main-color-four);
}
.nav-style-one.nav-color-four .prev-icon:hover,
.nav-style-one.nav-color-four .next-icon:hover {
  background: var(--main-color-four);
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
  font-size: 30px;
  cursor: pointer;
  z-index: 99;
  background: #fff;
  color: var(--main-color-one);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  color: #fff;
  background: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -12px;
  }
}
.nav-style-one .next-icon {
  left: auto;
  right: 25px;
}
@media only screen and (max-width: 375px) {
  .nav-style-one .next-icon {
    right: -12px;
  }
}

.dot-style-one.banner-dots .slick-dots li {
  height: 5px;
  width: 15px;
  display: block;
  border-radius: 0;
}
.dot-style-one.banner-dots .slick-dots li.slick-active {
  width: 40px;
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-02 .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 35px;
  border-radius: 2px;
}
.dot-style-one.dot-03 .slick-dots li {
  border-radius: 0;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one.dot-color-three .slick-dots li.slick-active {
  background: var(--main-color-three);
}
.dot-style-one.dot-color-four .slick-dots li.slick-active {
  background: var(--main-color-four);
}
.dot-style-one .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  margin: 0 5px;
  border: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
}

.body-overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.body-overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  left: 0;
}

.btn-wrapper button {
  outline: none;
}
.btn-wrapper button:focus {
  outline: none;
}

@media (min-width: 320px) and (max-width: 991.98px) {
  section.promo-area.padding-top-10 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) and (min-width: 320px) {
  .row.margin-top-65 {
    margin-top: 45px !important;
  }

  .row.margin-top-40 {
    margin-top: 20px !important;
  }

  .row.margin-top-10 {
    margin-top: 0px !important;
  }

  .col-lg-12.margin-top-10 {
    margin-top: 0px !important;
  }

  .btn-wrapper.margin-top-50 {
    margin-top: 30px !important;
  }
}
/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.fw-400 {
  font-weight: 400 !important;
}

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

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

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

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

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

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.ff-rubik {
  font-family: var(--rubik-font) !important;
}

.ff-roboto {
  font-family: var(--roboto-font) !important;
}

.ff-opensans {
  font-family: var(--opensans-font) !important;
}

.ff-montserrat {
  font-family: var(--montserrat-font) !important;
}

.ff-jost {
  font-family: var(--jost-font) !important;
}

.ff-playfair {
  font-family: var(--playfair-font) !important;
}

.padding-left-50 {
  padding-left: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .padding-left-50 {
    padding-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}

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

.padding-top-20 {
  padding-top: 20px;
}

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

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

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-40 {
    padding-top: 30px !important;
  }
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-top-50 {
  padding-top: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-50 {
    padding-top: 35px !important;
  }
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-65 {
    padding-top: 40px !important;
  }
}

.padding-top-70 {
  padding-top: 70px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-70 {
    padding-top: 40px !important;
  }
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-top-80 {
  padding-top: 80px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-80 {
    padding-top: 60px !important;
  }
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-100 {
    padding-top: 70px !important;
  }
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-130 {
  padding-top: 130px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-130 {
    padding-top: 80px !important;
  }
}

.padding-top-135 {
  padding-top: 135px;
}

.padding-top-140 {
  padding-top: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-top-140 {
    padding-top: 80px !important;
  }
}

.padding-top-145 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-210 {
  padding-top: 210px;
}

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-300 {
  padding-top: 300px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

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

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

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-40 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-50 {
    padding-bottom: 35px !important;
  }
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-65 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-70 {
  padding-bottom: 70px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-70 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-80 {
    padding-bottom: 60px !important;
  }
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-100 {
    padding-bottom: 70px !important;
  }
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-125 {
  padding-bottom: 125px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-130 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-140 {
  padding-bottom: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .padding-bottom-140 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-280 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-165 {
  padding-bottom: 165px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-215 {
  padding-bottom: 215px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

.margin-top-minus-90 {
  margin-top: -90px;
}

.margin-top-minus-100 {
  margin-top: -100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-160 {
  margin-top: 160px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.margin-top-15 {
  margin-top: 15px;
}

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

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

.margin-top-35 {
  margin-top: 35px;
}

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

.margin-top-45 {
  margin-top: 45px;
}

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

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

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

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

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

.margin-bottom-35 {
  margin-bottom: 35px;
}

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

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

.margin-bottom-55 {
  margin-bottom: 55px;
}

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

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

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-110 {
  margin-bottom: 110px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Keyframes Animation
--------------------------------------------------------------*/
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@-webkit-keyframes pulsing {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes pulsing {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
/*----------------------------------------------
    # Nav bar
----------------------------------------------*/
.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none !important;
  }
}
.navbar-area {
  position: relative;
  z-index: 999;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area {
    padding: 0;
  }
}
.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 99;
}
.navbar-area.nav-two .nav-container .navbar-collapse .navbar-nav {
  text-align: center;
}
.navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon .icon {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon.hover-color-two:hover .icon:hover {
  color: var(--main-color-two);
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts.hover-color-two:hover {
  color: var(--main-color-two);
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-03 {
  padding: 22px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-07 {
  padding: 22px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area .nav-container {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container {
    padding: 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container {
    padding: 15px 0;
  }
}
.navbar-area .nav-container .logo-wrapper .logo img {
  max-width: 200px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 160px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 150px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: left;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.nav-margin-top {
  margin-top: 15px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.desktop-center {
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-family: var(--body-font);
  text-transform: capitalize;
  color: var(--heading-color);
  font-weight: 400;
  line-height: 32px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  padding-right: 0;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
  padding: 10px 20px;
  position: relative;
  z-index: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 1px;
  left: 4px;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 992;
  border-bottom: 5px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: rgba(221, 221, 221, 0.3);
     -moz-column-rule-color: rgba(221, 221, 221, 0.3);
          column-rule-color: rgba(221, 221, 221, 0.3);
  -webkit-column-rule-width: 2px;
     -moz-column-rule-width: 2px;
          column-rule-width: 2px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
  margin-bottom: -1px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: -1px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: -1px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
  border-top: 1px solid #e2e2e2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 30px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  padding: 10px 28px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 7px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 5px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
  background: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .nav-right-content {
    display: none;
  }
}
.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
  margin: 0 15px;
}
.navbar-area .nav-container .nav-right-content ul li:last-child {
  margin-right: 0;
  margin-left: 0;
}
.navbar-area .nav-container .nav-right-content ul li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .nav-right-content ul li .info-bar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .nav-right-content ul li .info-bar-item {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .nav-right-content ul li .info-bar-item {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area.white-nav .nav-container .navbar-collapse.show .navbar-nav {
    background: #212121;
  }
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 50px;
    padding: 5px 0px 5px;
  }
  .navbar-area .nav-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.5);
    outline: none;
      box-shadow: none;
  }

  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color {
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color.active .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon {
    background: none;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 25px;
    height: 2px;
    margin: 10px -4px 10px;
    position: relative;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background: rgba(0, 0, 0, 0.5);
    top: -7px;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
    top: auto;
    bottom: -7px;
  }
  .navbar-area .nav-container .navbar-brand {
    display: block;
  }
  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }
  .navbar-area .nav-container .navbar-collapse {
    max-width: 100%;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    background: #DDD;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 17px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    padding-top: 10px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    /* @include transition(height 500ms); */
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    margin: 0 15px;
  }
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 140px;
  }
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-two);
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-two);
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-two);
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-three);
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-three);
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-three);
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-four);
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-four);
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-four);
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:hover > .megamenu-area {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:hover > .megamenu-area {
    height: auto;
    padding: 20px 0;
    gap: 30px;
  }
}

.nav-color-two .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-two) !important;
}

.nav-color-three .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-three) !important;
}

.nav-color-four .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-four) !important;
}

.white-color .megamenu-area .megamenu-single .new-collection .product-collection-btn {
  background: var(--heading-color);
}
.white-color .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-two) !important;
}

.megamenu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.3);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.3);
  position: absolute;
  top: 100%;
  left: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
  max-width: 1600px;
  width: 1560px;
  max-height: 570px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .megamenu-area {
    max-width: 1000px;
    gap: 40px;
    min-width: 100%;
    left: 50%;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .megamenu-area {
    max-width: 830px;
    min-width: 100%;
    gap: 40px;
    max-height: 350px;
    overflow-y: auto;
    left: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .megamenu-area {
    min-width: 100%;
    max-width: 800px;
    gap: 30px;
    left: auto;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
    right: 0;
    max-height: 350px;
    overflow-y: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .megamenu-area {
    min-width: 100%;
    max-width: 600px;
    gap: 30px;
    left: auto;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
    right: 0;
    max-height: 350px;
    overflow-y: auto;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-area {
    max-width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    min-width: 100%;
    position: initial;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    display: block;
  }
}
.megamenu-area.color-two .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.megamenu-area.color-two .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.megamenu-area.color-three .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.megamenu-area.color-three .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.megamenu-area.color-four .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.megamenu-area.color-four .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single {
    display: table;
    margin-top: 20px;
    padding: 0 0 0 20px;
  }
}
.megamenu-single .megamenu-heading-title {
  font-size: 24px;
  font-weight: 500;
  padding: 0px 0 20px 0;
}
.megamenu-single .megamenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px !important;
}
.megamenu-single .megamenu-items .megamenu-thumbs {
  margin-right: 20px;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  width: 70px;
}
.megamenu-single .megamenu-items .megamenu-contents {
  text-align: left;
}
.megamenu-single .megamenu-items .megamenu-contents .megamenu-title {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-one);
}
.megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 500;
}
.megamenu-single .megamenu-items .megamenu-contents .price-updates .old-price {
  color: var(--extra-light-color);
  text-decoration: line-through;
}
.megamenu-single .megamenu-items-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 !important;
}
@media only screen and (max-width: 480px) {
  .megamenu-single .megamenu-items-big {
    display: block;
  }
}
.megamenu-single .megamenu-items-big .megamenu-thumbs {
  height: 200px;
  width: 250px;
  margin-right: 20px;
}
@media only screen and (max-width: 375px) {
  .megamenu-single .megamenu-items-big .megamenu-thumbs {
    margin-right: 0;
  }
}
.megamenu-single .megamenu-items-big .megamenu-thumbs img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .megamenu-items-big .megamenu-contents {
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .megamenu-single .megamenu-items-big .megamenu-contents {
    margin-top: 15px;
  }
}
.megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-one);
}
.megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 500;
}
.megamenu-single .megamenu-items-big .megamenu-contents .price-updates .old-price {
  color: var(--extra-light-color);
  text-decoration: line-through;
}
.megamenu-single .new-collection {
  padding: 0px 0 !important;
  display: inline-block;
  height: 400px;
  width: 350px;
  position: relative;
  z-index: 2;
}
.megamenu-single .new-collection:hover .product-collection-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 375px) {
  .megamenu-single .new-collection {
    height: 100%;
    width: 280px;
  }
}
.megamenu-single .new-collection > a {
  padding: 0 !important;
}
.megamenu-single .new-collection img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .new-collection .product-collection-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  padding: 10px 20px !important;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-one) !important;
  color: #fff !important;
}
.megamenu-single .single-category-megamenu {
  padding: 30px 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single .single-category-megamenu {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu {
    padding: 20px;
  }
}
.megamenu-single .single-category-megamenu .category-thumb {
  height: 200px;
  width: 200px;
}
.megamenu-single .single-category-megamenu .category-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .single-category-megamenu .category-contents .titles:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single .single-category-megamenu .category-contents .titles {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu .category-contents .titles {
    font-size: 24px;
  }
}
.megamenu-single .single-category-megamenu .category-contents .collection-btn {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 !important;
  text-decoration: underline;
  color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
  .megamenu-single .single-category-megamenu .category-contents .collection-btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu .category-contents .collection-btn {
    font-size: 14px;
  }
}
.megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-one);
}

/* Banner  */
.banner-area {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}

.banner-middle-content {
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content {
    margin-top: 20px;
  }
}
.banner-middle-content .banner-middle-image {
  position: relative;
  z-index: 2;
  margin-bottom: -5px;
}
.banner-middle-content .banner-middle-image .middle-content {
  max-width: 290px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-middle-content .banner-middle-image .middle-content {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content .banner-middle-title {
    font-size: 32px !important;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-middle-content .banner-middle-image .middle-content .banner-middle-title {
    font-size: 28px !important;
  }
}
.banner-middle-content .banner-middle-image .middle-content .banner-middle-title:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content .btn-buy {
    margin-top: 20px;
    font-size: 18px;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-right-image-content {
    margin-top: 30px;
  }
}

.single-right-image {
  display: block;
  position: relative;
  z-index: 2;
  padding: 6px 0;
}
.single-right-image:not(:last-child) {
  margin-bottom: 35px;
}
.single-right-image img {
  margin: 0 auto;
  text-align: center;
}
.single-right-image .banner-right-title {
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 9;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-right-image .banner-right-title {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-right-image .banner-right-title {
    bottom: 20px;
    left: 20px;
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-right-image .banner-right-title {
    font-size: 20px !important;
  }
}
.single-right-image .banner-right-title:hover {
  color: var(--main-color-one);
}

.banner-contents-wrappers {
  position: relative;
  z-index: 1;
}

.banner-two .banner-contents {
  padding: 105px 0 105px 115px;
  max-width: 700px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 40px;
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 40px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-two .banner-contents {
    padding: 60px 0 60px 40px;
    max-width: 520px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-two .banner-contents {
    padding: 60px 0 60px 20px;
    max-width: 100%;
  }
}

.banner-three .banner-contents {
  padding: 180px 0 200px 0px;
  max-width: 680px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-three .banner-contents {
    padding: 180px 0 200px 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-three .banner-contents {
    padding: 180px 0 200px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-three .banner-contents {
    padding: 130px 0 160px 0px;
    max-width: 520px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-three .banner-contents {
    padding: 100px 0 120px 0px;
    max-width: 100%;
  }
}

.banner-four {
  padding: 150px 0 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four {
    padding: 100px 0 0px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-four {
    padding: 80px 0 0px;
  }
}
.banner-four .banner-right-contents-all {
  display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four .banner-shapes {
    display: none;
  }
}
.banner-four .banner-contents {
  padding: 0px 0 0px 0px;
  max-width: 620px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-four .banner-contents {
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-four .banner-contents {
    padding: 50px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four .banner-contents {
    padding: 50px 0 0px 0px;
    max-width: 520px;
  }
}
.banner-four .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-three);
}

.banner-five {
  padding: 160px 0 0px;
}
@media (min-width: 1200px) and (max-width: 1799.98px) {
  .banner-five {
    padding: 150px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five {
    padding: 150px 0 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five {
    padding: 100px 0 0px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five {
    padding: 80px 0 0px;
  }
}
.banner-five .banner-five-shapes::before {
  content: "";
  height: 364px;
  width: 364px;
  border-radius: 50%;
  background: var(--main-color-one);
  position: absolute;
  left: 30px;
  top: 100px;
  z-index: -1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-five-shapes::before {
    left: 70px;
    top: 50px;
    height: 300px;
    width: 300px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-five .banner-five-shapes::before {
    left: 80px;
    top: 50px;
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .banner-five-shapes::before {
    left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .banner-five-shapes::before {
    left: 30px;
  }
}
.banner-five .banner-five-shapes.bg-color-2::before {
  background: var(--main-color-two);
}
.banner-five .banner-five-shapes.bg-color-3::before {
  background: var(--main-color-three);
}
.banner-five .banner-five-shapes.bg-color-4::before {
  background: var(--main-color-four);
}
.banner-five .banner-right-contents-all {
  display: block;
}
.banner-five .banner-contents {
  padding: 0;
  max-width: 720px;
  z-index: 2;
  position: relative;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-five .banner-contents {
    padding: 150px 0 0px 0px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-five .banner-contents {
    padding: 100px 0 0px 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-five .banner-contents {
    padding: 150px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five .banner-contents {
    padding: 100px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-contents {
    padding: 10px 0 0px 0px;
    max-width: 520px;
  }
}
.banner-five .banner-contents .title {
  font-size: 100px;
  -webkit-line-clamp: 3;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-five .banner-contents .title {
    font-size: 85px;
    line-height: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-five .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five .banner-contents .title {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-five .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-five .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-one);
}

.banner-six .slider-shapes {
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .slider-shapes {
    display: none;
  }
}
.banner-six .banner-contents {
  padding: 280px 0 250px;
  max-width: 630px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .banner-contents {
    padding: 150px 0 250px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-six .banner-contents {
    padding: 150px 0 200px;
  }
}
.banner-six .banner-contents .title {
  font-size: 120px;
  line-height: 140px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-six .banner-contents .title {
    font-size: 85px;
    line-height: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-six .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-six .banner-contents .title {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-six .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-six .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-six .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-one);
}

.banner-seven .banner-contents {
  padding: 130px 0;
  max-width: 630px;
  margin-left: auto;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents {
    padding: 130px 0;
    max-width: 620px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents {
    padding: 100px 0;
    max-width: 530px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents {
    padding: 100px 0;
    max-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-seven .banner-contents {
    padding: 70px 0;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
.banner-seven .banner-contents .title {
  font-size: 110px;
  line-height: 130px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .title {
    font-size: 85px;
    line-height: 80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .title {
    font-size: 75px;
    line-height: 75px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .title {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-seven .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-seven .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 25px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 30px;
  }
}
.banner-seven .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-four);
}
.banner-seven .banner-images-right {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-images-right {
    max-width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-images-right {
    max-width: 500px;
    left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-images-right {
    max-width: 460px;
    left: 0 !important;
  }
}

.banner-eight {
  overflow: visible;
  padding-top: 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight {
    padding-top: 60px;
  }
}
.banner-eight .banner-contents {
  padding: 240px 0 200px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-contents {
    padding: 210px 0 250px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-contents {
    padding: 190px 0 250px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-contents {
    padding: 150px 0 220px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-contents {
    padding: 140px 0 180px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-contents {
    padding: 100px 0 0;
    max-width: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-eight .banner-contents {
    padding: 80px 0 0;
  }
}
@media only screen and (max-width: 375px) {
  .banner-eight .banner-contents {
    padding: 80px 0 0;
    max-width: 270px;
  }
}
.banner-eight .banner-contents .title {
  font-size: 110px;
  line-height: 130px;
  color: var(--heading-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-contents .title {
    font-size: 110px;
    line-height: 130px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-contents .title {
    font-size: 90px;
    line-height: 105px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-contents .title {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-eight .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-eight .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-eight .banner-contents .btn-wrapper {
    margin-top: 30px;
  }
}
.banner-eight .banner-contents .btn-wrapper .cmn-btn:hover {
  background: var(--heading-color);
  color: var(--main-color-two);
}
.banner-eight .banner-images-rights {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-images-rights {
    display: none;
  }
}
.banner-eight .banner-images-rights .single-banner-img img {
  border-radius: 0 0 0 170px;
  margin-left: auto;
  max-height: 885px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 8570px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 850px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 700px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 620px;
  }
}
.banner-eight .banner-img-shapes img {
  position: absolute;
  z-index: 9;
}
.banner-eight .banner-img-shapes img:nth-child(1) {
  top: -50px;
  left: -50px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.banner-eight .banner-img-shapes img:nth-child(2) {
  bottom: -100px;
  right: -100px;
  z-index: -1;
  -webkit-animation: 6s floating linear infinite;
          animation: 6s floating linear infinite;
}
.banner-eight .banner-shape-eight img {
  position: absolute;
  z-index: -1;
}
.banner-eight .banner-shape-eight img:nth-child(1) {
  top: 25%;
  left: 42%;
}
.banner-eight .banner-shape-eight img:nth-child(2) {
  left: 5%;
  bottom: 5%;
}
.banner-eight .banner-shape-eight img:nth-child(3) {
  left: 45%;
  bottom: 10%;
}
.banner-eight .banner-shape-eight img:nth-child(4) {
  right: 4%;
  bottom: 30%;
}

.black-themes {
  background: #1B1C25;
}
.black-themes .banner-contents .title {
  color: #fff;
}
.black-themes .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-two);
}

.banner-bg-image {
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.slider-shapes {
  position: absolute;
  bottom: 50px;
  right: -150px;
  z-index: 1;
}

.banner-contents {
  padding: 105px 0;
  position: relative;
  z-index: 2;
}
.banner-contents .banner-store {
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 480px) {
  .banner-contents .banner-store {
    font-size: 21px !important;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .banner-store {
    font-size: 16px !important;
  }
}
.banner-contents .title {
  font-size: 90px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-contents .banner-para {
  line-height: 30px;
  margin-top: 35px;
}
@media only screen and (max-width: 480px) {
  .banner-contents .banner-para {
    font-size: 16px !important;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .banner-para {
    font-size: 15px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .cominsoon-btn {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .cominsoon-btn {
    margin-top: 20px;
  }
}
.banner-contents .banner-left-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .banner-left-products {
    margin-top: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-left-products {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-contents .banner-left-products {
    display: inline-block;
  }
}
.banner-contents .banner-left-products .banner-single-products {
  padding: 15px 15px 10px;
  max-width: 250px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-left-products .banner-single-products {
    max-width: 220px;
  }
}
.banner-contents .banner-left-products .banner-single-products .banner-product-thumb {
  height: 170px;
  min-width: 170px;
  display: block;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-thumb img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .single-flex-banner {
  margin-top: 15px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .single-flex-banner .banner_title:hover {
  color: var(--main-color-one);
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .banner-iconlist {
  display: inherit;
  gap: 2px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .banner-iconlist .banner-icon {
  background-color: var(--main-color-one);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 3px;
  font-size: 17px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-right-contents-all {
    display: none;
  }
}
.banner-right-contents-all .banner-image-shapes {
  display: inline-block;
  height: 655px;
  width: 655px;
  background: 0;
  border: 80px solid #FBEAD9;
  border-radius: 50%;
  position: absolute;
  bottom: 100px;
  right: 170px;
  z-index: -2;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 580px;
    width: 580px;
    border: 70px solid #FBEAD9;
    right: 150px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 500px;
    width: 500px;
    border: 60px solid #FBEAD9;
    right: 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 400px;
    width: 400px;
    border: 50px solid #FBEAD9;
    right: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 360px;
    width: 360px;
    border: 50px solid #FBEAD9;
    right: 90px;
  }
}
.banner-right-contents-all .banner-image-shapes::before {
  content: "";
  position: absolute;
  border: 10px solid #FBEAD9;
  height: calc(100% + 240px);
  width: calc(100% + 240px);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 220px);
    width: calc(100% + 220px);
    top: -110px;
    left: -110px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 180px);
    width: calc(100% + 180px);
    top: -90px;
    left: -90px;
    border: 7px solid #FBEAD9;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 160px);
    width: calc(100% + 160px);
    top: -80px;
    left: -80px;
    border: 7px solid #FBEAD9;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 160px);
    width: calc(100% + 160px);
    top: -80px;
    left: -80px;
    border: 7px solid #FBEAD9;
  }
}

.banner-images-right {
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 0;
}
.banner-images-right .banner-shapes-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  width: 100%;
  text-align: center;
}

.banner-img-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.banner-img-flex .single-banner-img {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  height: 600px;
  width: 440px;
}
.banner-img-flex .single-banner-img:nth-child(2n+1) {
  margin-top: 50px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-img-flex .single-banner-img {
    height: 500px;
    width: 400px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-img-flex .single-banner-img {
    height: 450px;
    width: 350px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-img-flex .single-banner-img {
    height: 450px;
    width: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-img-flex .single-banner-img {
    height: 300px;
    width: 240px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-img-flex .single-banner-img {
    height: 400px;
    width: 320px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-img-flex .single-banner-img {
    height: 280px;
    width: 235px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-img-flex .single-banner-img {
    height: 250px;
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-img-flex .single-banner-img {
    height: 200px;
    width: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-img-flex .single-banner-img {
    height: 180px;
    width: 130px;
  }
}
.banner-img-flex .single-banner-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-socials {
  position: absolute;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  z-index: 99;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-socials {
    right: -120px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-socials {
    top: 30%;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials {
    top: 30%;
    right: -70px;
  }
}
.banner-socials .social-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .banner-socials .social-lists {
    gap: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists {
    gap: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists {
    gap: 15px;
  }
}
.banner-socials .social-lists li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--light-color);
}
.banner-socials .social-lists li a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 480px) {
  .banner-socials .social-lists li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists li a {
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .single-banner-five {
    height: 500px;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-five .single-banner-five {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .single-banner-five {
    height: 350px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .single-banner-five {
    height: 300px;
    text-align: right;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .single-banner-five img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
  }
}

.banner-shapes img {
  position: absolute;
  z-index: -1;
}
.banner-shapes img:nth-child(1) {
  top: 15%;
  left: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(2) {
  top: 10%;
  right: 12%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(3) {
  left: 45%;
  bottom: 25%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(4) {
  right: 10%;
  bottom: 12%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes.shapes-four img:nth-child(1) {
  top: 30%;
  left: 50px;
}
.banner-shapes.shapes-four img:nth-child(2) {
  top: auto;
  bottom: 50px;
  right: 30%;
}
.banner-shapes.shapes-four img:nth-child(3) {
  top: 130px;
  left: 42%;
}
.banner-shapes.shapes-four img:nth-child(4) {
  right: 11%;
  bottom: 30%;
}
@media (min-width: 1200px) and (max-width: 1799.98px) {
  .banner-shapes.shapes-four img:nth-child(4) {
    right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-shapes.shapes-four img:nth-child(4) {
    right: 10px;
  }
}
.banner-shapes.shapes-five img:nth-child(1) {
  top: auto;
  bottom: 100px;
  left: 20%;
}
.banner-shapes.shapes-five img:nth-child(2) {
  top: 20%;
  left: 45%;
}
.banner-shapes.shapes-five img:nth-child(3) {
  top: auto;
  left: auto;
  right: 50px;
  bottom: 30%;
}
.banner-shapes.shapes-five img:nth-child(4) {
  left: 47%;
  bottom: 10%;
}
.banner-shapes.shapes-five img:nth-child(5) {
  top: 30%;
  left: 50px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes.shapes-five img:nth-child(6) {
  bottom: 0;
  right: -330px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}

.banner-big-shape img {
  position: absolute;
  z-index: -3;
}
.banner-big-shape img:nth-child(1) {
  top: -150px;
  left: -150px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.banner-big-shape img:nth-child(2) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}

.banner-bottom-slider {
  position: absolute;
  bottom: 150px;
  right: 0;
  z-index: 9;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-bottom-slider {
    bottom: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-bottom-slider {
    bottom: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-bottom-slider {
    bottom: 50px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-bottom-slider {
    bottom: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-bottom-slider {
    bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-bottom-slider {
    bottom: 20px;
  }
}
.banner-bottom-slider .banner-slider-item-small .banner-small-image {
  height: 290px;
  width: 230px;
  cursor: pointer;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 200px;
    width: 170px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 160px;
    width: 140px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 140px;
    width: 120px;
  }
}
.banner-bottom-slider .banner-slider-item-small .banner-small-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-bottom-shape {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
.banner-bottom-shape img {
  width: 100%;
}

.banner-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
}
.banner-waves img {
  width: 100%;
}

/* Topbar area */
.topbar-area {
  padding: 10px 0;
}
.topbar-area.index-03 {
  padding: 0;
}

.color-02 .topbar-social li a:hover {
  color: var(--main-color-two);
}
.color-02 .topbar-faq a:hover {
  color: var(--main-color-two);
}
.color-02 .call-us a:hover {
  color: var(--main-color-two);
}

.color-03 .topbar-social li a:hover {
  color: var(--main-color-three);
}
.color-03 .topbar-faq a:hover {
  color: var(--main-color-three);
}
.color-03 .call-us a:hover {
  color: var(--main-color-three);
}

.color-04 .topbar-social li a:hover {
  color: var(--main-color-four);
}
.color-04 .topbar-faq a:hover {
  color: var(--main-color-four);
}
.color-04 .call-us a:hover {
  color: var(--main-color-four);
}

.topbar-select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.language-content {
  z-index: 9998;
}
.language-content.ussd-content .nice-select {
  width: 90px;
}
@media only screen and (max-width: 375px) {
  .language-content.ussd-content .nice-select {
    width: 70px;
  }
}
.language-content .nice-select {
  background: none;
  border: 0;
  display: inline-block;
  color: #fff;
  width: 85px;
  height: 30px;
  line-height: 30px;
}
.language-content .nice-select.open {
  border: 0;
}
.language-content .nice-select:focus {
  outline: none;
  border: 0;
}
.language-content .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 15px;
}
@media only screen and (max-width: 375px) {
  .language-content .nice-select::after {
    width: 7px;
    height: 7px;
  }
}
@media only screen and (max-width: 375px) {
  .language-content .nice-select {
    padding: 0;
    width: 60px;
  }
}
.language-content .nice-select .option.selected {
  background: #040B25;
  color: #fff;
  font-weight: 400;
}
.language-content .nice-select .option:hover {
  background: #fff;
  color: #040B25;
}
.language-content .nice-select .list {
  width: 100%;
  background: #040B25;
}
.language-content .nice-select .nice-select-search-box {
  background: #040B25;
}
.language-content .nice-select .nice-select-search-box .nice-select-search {
  background: none;
  color: #fff;
}

.topbar-left-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  .topbar-left-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.topbar-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topbar-social li:not(:last-child) {
  margin-right: 5px;
}
.topbar-social li a {
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.topbar-social li a:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-social li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575.98px) {
  .topbar-social li a {
    font-size: 16px;
  }
}

.topbar-right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 40px;
}
@media only screen and (max-width: 767.98px) {
  .topbar-right-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .topbar-right-flex {
    gap: 20px;
  }
}

.topbar-faq a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.topbar-faq a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 575.98px) {
  .topbar-faq a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 575.98px) {
  .call-us {
    font-size: 14px;
  }
}
.call-us a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.call-us a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 575.98px) {
  .call-us a {
    font-size: 14px;
  }
}

.topbar-bg-1 {
  background-color: #040B25;
}

/* Topbar-bottom-area */
.topbar-bottom-area {
  padding: 30px 0 15px;
  position: relative;
  z-index: 9991;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-bottom-area {
    padding: 10px 0;
  }
}

.single-searchbar {
  position: relative;
}

.form--control {
  height: 55px;
  border: 1px solid #DDD;
  width: 100%;
  padding: 0 100px 0 20px;
}

.right-position-button {
  position: absolute;
  right: 0;
  height: 51px;
  padding: 0 20px;
  font-size: 20px;
  background: var(--main-color-one);
  border: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
}
.right-position-button.margin-2 {
  margin: 2px;
}

.topbar-bottom-right-content {
  margin-left: 100px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .topbar-bottom-right-content {
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .topbar-bottom-right-content {
    margin-left: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-bottom-right-content {
    margin-left: 0;
    margin-top: 20px;
  }
}

.topbar-bottom-right-flex {
  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;
}

.track-order {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
}
.track-order:hover {
  color: var(--main-color-one);
}

.track-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.track-icon-list.style-02 {
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .track-icon-list.style-02 {
    gap: 10px;
  }
}
.track-icon-list.white-color .single-icon .icon {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 375px) {
  .track-icon-list {
    gap: 20px;
  }
}
.track-icon-list .single-icon {
  position: relative;
}
.track-icon-list .single-icon .icon {
  font-size: 26px;
  color: var(--heading-color);
}
.track-icon-list .single-icon .icon:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
  .track-icon-list .single-icon .icon {
    font-size: 20px;
  }
}
.track-icon-list .single-icon.hover-color-two .icon:hover {
  color: var(--main-color-two);
}
.track-icon-list .single-icon.hover-color-three .icon:hover {
  color: var(--main-color-three);
}
.track-icon-list .single-icon.hover-color-four .icon:hover {
  color: var(--main-color-four);
}
.track-icon-list .single-icon .icon-notification {
  position: absolute;
  top: -2px;
  right: -10px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22px;
  width: 22px;
  background: var(--main-color-one);
  color: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 375px) {
  .track-icon-list .single-icon .icon-notification {
    height: 18px;
    width: 18px;
    font-size: 12px;
  }
}
.track-icon-list .single-icon .icon-notification.bg-color-one {
  background: var(--main-color-one);
}
.track-icon-list .single-icon .icon-notification.bg-color-two {
  background: var(--main-color-two);
}
.track-icon-list .single-icon .icon-notification.bg-color-three {
  background: var(--main-color-three);
}
.track-icon-list .single-icon .icon-notification.bg-color-four {
  background: var(--main-color-four);
}

.login-account {
  position: relative;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login-account:hover .account-list-item {
  visibility: visible;
  opacity: 1;
  top: 100%;
  background: #fff;
}
.login-account .account-list-item {
  position: absolute;
  top: 130%;
  right: 0;
  background: #fff;
  z-index: 9998;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
  width: 120px;
  background: #fff;
  visibility: hidden;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block !important;
  margin-left: 0 !important;
}
.login-account .account-list-item.hover-color-two .list a:hover {
  background: var(--main-color-two);
}
.login-account .account-list-item.hover-color-three .list a:hover {
  background: var(--main-color-three);
}
.login-account .account-list-item.hover-color-four .list a:hover {
  background: var(--main-color-four);
}
.login-account .account-list-item .list {
  margin: 0 !important;
  display: block !important;
}
.login-account .account-list-item .list a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  color: var(--heading-color);
  border-bottom: 1px solid rgba(221, 221, 221, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login-account .account-list-item .list a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.login-account.style-02 {
  position: relative;
  z-index: 9999;
}
.login-account.style-02 .account-list-item .list a:hover {
  background: var(--main-color-three);
}
.login-account.style-02 .accounts {
  color: #fff;
  background: var(--main-color-one);
  padding: 10px 20px;
}
.login-account.style-02 .accounts:hover {
  background: #fff;
  color: var(--main-color-one);
}
.login-account.style-02 .accounts:hover i {
  color: var(--main-color-one);
}
.login-account.style-02 .accounts i {
  color: #fff;
}
.login-account.style-02 .accounts.bg-color-two {
  background: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-two:hover {
  background: #fff;
  color: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-two:hover i {
  color: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-three {
  background: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-three:hover {
  background: #fff;
  color: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-three:hover i {
  color: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-four {
  background: var(--main-color-four);
}
.login-account.style-02 .accounts.bg-color-four:hover {
  background: #fff;
  color: var(--main-color-four);
}
.login-account.style-02 .accounts.bg-color-four:hover i {
  color: var(--main-color-four);
}
.login-account.white-color .accounts {
  color: #fff;
}
.login-account.white-color .accounts:hover {
  color: var(--main-color-one);
}
.login-account.white-color .accounts:hover i {
  color: var(--main-color-one);
}
.login-account.white-color .accounts i {
  color: #fff;
}
.login-account .accounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.login-account .accounts:hover {
  color: var(--main-color-one);
}
.login-account .accounts.hover-color-two i {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-two:hover {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-two:hover i {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-three i {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-three:hover {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-three:hover i {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-four i {
  color: var(--main-color-four);
}
.login-account .accounts.hover-color-four:hover {
  color: var(--main-color-four);
}
.login-account .accounts.hover-color-four:hover i {
  color: var(--main-color-four);
}
.login-account .accounts i {
  font-size: 26px;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 375px) {
  .login-account .accounts i {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .login-account .accounts {
    gap: 5px;
  }
}

.addto-cart-contents .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.cart-shopping {
  position: relative;
  z-index: 2;
}
.cart-shopping:hover .addto-cart-contents {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .cart-shopping:hover .addto-cart-contents {
    -webkit-transform: translateX(50%) scale(1);
            transform: translateX(50%) scale(1);
  }
}
.cart-shopping .addto-cart-contents {
  position: absolute;
  right: 0;
  top: 130%;
  z-index: 3;
  width: 400px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .cart-shopping .addto-cart-contents {
    right: 50%;
    -webkit-transform: translateX(50%) scale(0.5);
            transform: translateX(50%) scale(0.5);
  }
}
@media only screen and (max-width: 480px) {
  .cart-shopping .addto-cart-contents {
    width: 320px;
  }
}
@media only screen and (max-width: 375px) {
  .cart-shopping .addto-cart-contents {
    width: 270px;
    padding: 10px;
    right: 100%;
  }
}
.cart-shopping .addto-cart-contents .cart-total-amount {
  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-top: 20px;
}
.cart-shopping .single-addto-cart-wrappers {
  max-height: 240px;
  overflow-y: auto;
}
.cart-shopping .single-addto-carts {
  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;
}
.cart-shopping .single-addto-carts:not(:last-child) {
  margin-bottom: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-thumb {
  height: 70px;
  width: 70px;
  margin-right: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-img-contents .price-updates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-img-contents .price-updates .old-price {
  text-decoration: line-through;
}
.cart-shopping .btn-wrapper .cmn-btn {
  color: var(--heading-color);
}

/* Top-menu-category */
.top-menu-category {
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .top-menu-category {
    margin-bottom: 15px;
  }
}

.single-category-flex {
  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: 18px 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-category-flex {
    padding: 10px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category-flex {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-category-flex {
    padding: 13px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category-flex {
    padding: 10px 20px;
  }
}
.nicescroll-rails {
  z-index: 9999 !important;
}

.nicescroll-cursors {
  background-color: var(--extra-light-color) !important;
  border: 0 !important;
  width: 4px !important;
}

.top-menu-category .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.navbar-area-side {
  position: relative;
  max-height: 720px;
  overflow-y: auto;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .navbar-area-side {
    max-height: 630px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area-side {
    max-height: 540px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area-side {
    max-height: 470px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area-side {
    max-height: 400px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side {
    max-height: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .navbar-area-side {
    max-height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .navbar-area-side {
    max-height: 300px;
  }
}
.navbar-area-side.nicescroll-rails {
  margin-right: -5px !important;
}
.navbar-area-side.nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.navbar-area-side {
  position: absolute;
  left: 0;
  top: 85px;
  z-index: 99;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area-side {
    padding: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area-side {
    padding: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area-side {
    padding: 5px;
    top: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side {
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    width: 100%;
    top: 75px;
  }
}
@media only screen and (max-width: 575.98px) {
  .navbar-area-side {
    top: 70px;
  }
}
@media only screen and (max-width: 375px) {
  .navbar-area-side {
    top: 60px;
  }
}
.navbar-area-side.active {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side.active {
    visibility: visible;
    opacity: 1;
  }
}

.cate-list {
  width: 100%;
  display: inline-block;
}
.cate-list:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 20px;
  }
}
.cate-list.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.cate-list.menu-item-has-children.active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: var(--main-color-one);
}
.cate-list.menu-item-has-children.active .sub-menu {
  visibility: visible;
  opacity: 1;
  padding: 20px 20px;
  border-bottom: 4px solid var(--main-color-one);
  margin-top: 10px;
  height: auto;
  display: block;
}
.cate-list.menu-item-has-children::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 18px;
  right: 5px;
  position: absolute;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list.menu-item-has-children::after {
    right: 0;
  }
}
.cate-list.menu-item-has-children:hover::after {
  color: var(--main-color-one);
}
.cate-list:hover > .cate-item .category-menu-inner .category-menu-image img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.cate-list:hover > .cate-item .category-menu-inner .category-list .title {
  color: var(--main-color-one);
}
.cate-list .sub-menu {
  position: initial;
  text-align: left;
  margin: 0;
  padding: 0;
  left: 0%;
  height: 0;
  top: 100%;
  width: 100%;
  background-color: #f1f1f1;
  z-index: 992;
  visibility: hidden;
  opacity: 0;
  border: unset;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: none;
}
.cate-list .view-all-category {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .view-all-category:hover {
  color: var(--main-color-one);
}
.cate-list .view-all-category:hover::after {
  left: 105%;
}
.cate-list .view-all-category::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100%;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-left: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
.cate-list .category-menu-inner .category-menu-image {
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner .category-menu-image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cate-list .category-menu-inner .category-list .title {
  color: var(--heading-color);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner .category-list .subtitles {
  display: block;
  color: var(--extra-light-color);
  margin-top: 5px;
}

@media (min-width: 320px) and (max-width: 991px) {
  .cate-list.menu-item-has-children.active .category-megamenu {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding: 20px 10px;
    min-width: 100%;
  }
  .cate-list.menu-item-has-children.active::after {
    color: var(--main-color-one);
  }
  .cate-list.menu-item-has-children .category-megamenu {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 20px;
    padding-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
  }
}
@media (min-width: 320px) and (max-width: 991px) and (min-width: 320px) and (max-width: 991.98px) {
  .cate-list.menu-item-has-children .category-megamenu {
    min-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .cate-list.menu-item-has-children .category-megamenu .single-megamenu {
    padding: 0;
  }
}
/* Promo area */
.promo-area {
  overflow: hidden;
}

.promo-child:not(:last-child) .single-promo::after {
  content: "";
  position: absolute;
  height: 70px;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ddd;
  right: 0;
}
@media only screen and (max-width: 575.98px) {
  .promo-child:not(:last-child) .single-promo::after {
    display: none;
  }
}

.single-promo {
  padding: 30px;
  -webkit-box-shadow: 0 0 10px #f7f7f7;
          box-shadow: 0 0 10px #f7f7f7;
  margin: 0 15px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo {
    margin: 0;
    padding: 30px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo {
    margin: 0;
    padding: 30px 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-promo {
    margin: 0;
  }
}
.single-promo .icon {
  font-size: 45px;
}
.single-promo .contents .common-para {
  margin-top: 10px;
}

/* Promo Collection Area */
@media only screen and (max-width: 375px) {
  .responsive-child .single-promo-collection .promo-collection-image-contents .promo-collection-flex.different-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    gap: 5px;
  }
}
@media only screen and (max-width: 375px) {
  .responsive-child .single-promo-collection .promo-collection-image-contents .promo-collection-flex.different-img .promo-collection-img {
    max-width: 120px;
    margin: unset;
  }
}

.single-promo-collection {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.single-promo-collection .promo-collection-image-contents {
  position: relative;
  z-index: 1;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
  font-size: 36px;
  line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 33px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 26px;
  }
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .shop-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .shop-btn:hover {
  color: var(--main-color-three);
  letter-spacing: 1px;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-img {
  max-width: 250px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media only screen and (max-width: 480px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 170px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    margin: 0 auto;
    max-width: 200px;
  }
}

/* About area */
.single-about-content {
  padding: 50px 70px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-content {
    padding: 50px 60px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content {
    padding: 50px 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .single-about-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-content {
    padding: 20px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content .about-title {
    font-size: 42px !important;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content .about-title {
    font-size: 35px !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-about-content .about-title {
    font-size: 30px !important;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-content .about-title {
    font-size: 28px !important;
  }
}
.single-about-content .about-para {
  padding-top: 30px;
  font-size: 20px;
  line-height: 40px;
  color: var(--light-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content .about-para {
    font-size: 16px;
    line-height: 32px;
    -webkit-line-clamp: unset;
  }
}

.single-about-address {
  padding-left: 50px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-address {
    padding-left: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
.single-about-address .about-location-list .list {
  padding-top: 30px;
  font-size: 20px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-about-address .about-location-list .list strong {
  color: var(--light-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-address .about-location-list .list {
    font-size: 19px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-address .about-location-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-about-address .about-location-list .list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-address .about-location-list .list {
    font-size: 14px;
  }
}

/* Featured Area */
.single-featured {
  overflow: hidden;
  position: relative;
}
.single-featured.style-02:hover .featured-image .featured-icon-list {
  bottom: 30px;
  top: auto;
}
.single-featured.style-02 .featured-image img {
  border-radius: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list {
  top: auto;
  bottom: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 0;
  left: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 0;
  margin-right: 10px;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists .icon {
  color: var(--main-color-three);
  border-radius: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.single-featured.style-02 .contents .common-title-two:hover {
  color: var(--main-color-three);
}
.single-featured.style-02 .cart-loading::before {
  background-color: var(--main-color-three);
}
.single-featured:hover .featured-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-featured:hover .featured-image .featured-icon-list {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.single-featured .featured-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-featured .featured-image img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-featured .featured-image .featured-icon-list {
  position: absolute;
  top: -150px;
  right: 50px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.single-featured .featured-image .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.single-featured .featured-image .featured-icon-list .lists .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-featured .featured-image .featured-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.single-featured .contents {
  padding-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents {
    padding-top: 10px;
  }
}
.single-featured .contents .common-title-two:hover {
  color: var(--main-color-one);
}
.single-featured .contents .common-price-title {
  margin-top: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents .common-price-title {
    margin-top: 5px;
  }
}
.single-featured .contents .btn-wrapper {
  margin-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents .btn-wrapper {
    margin-top: 15px;
  }
}

.cart-loading {
  position: relative;
  z-index: 0;
}
.cart-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  height: auto;
  width: auto;
  visibility: hidden;
  opacity: 0;
}
.cart-loading.active-loading {
  /* img {
      visibility: visible;
      opacity: 1;
  } */
}
.cart-loading.active-loading::before {
  visibility: visible;
  opacity: 1;
}
.cart-loading::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--main-color-one);
  color: #fff;
  border: 2px solid transparent;
  top: 0;
  left: 0;
  text-align: center;
  border-radius: 5px;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  background-image: url(../img/loading-cart.gif);
  background-repeat: no-repeat;
  background-position: center;
}

/* Featured Item area */
.signle-featured-items.white-color {
  color: #fff;
}
.signle-featured-items.white-color .featured-item-contents {
  color: #fff;
}
.signle-featured-items:hover .featured-thumb .featured-icon-list {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.signle-featured-items .featured-thumb {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 575.98px) {
  .signle-featured-items .featured-thumb img {
    margin: 0 auto;
    text-align: center;
  }
}
.signle-featured-items .featured-thumb .featured-icon-list {
  position: absolute;
  top: -150px;
  right: 50px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-one .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-one .lists .icon:hover {
  color: var(--main-color-one);
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-three .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-three .lists .icon:hover {
  color: var(--main-color-three);
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-four .lists .icon:hover {
  background: var(--main-color-four);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-four .lists .icon:hover {
  color: var(--main-color-four);
}
.signle-featured-items .featured-thumb .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.signle-featured-items .featured-thumb .featured-icon-list .lists .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  color: var(--heading-color);
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-featured-items .featured-thumb .featured-icon-list .lists .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.signle-featured-items .featured-item-contents .reviews {
  display: inline-block;
  margin-bottom: 10px;
}
.signle-featured-items .cart-loading::before {
  background-color: var(--main-color-two);
}

.black-themes .signle-featured-items .featured-thumb .featured-icon-list .lists .icon:hover {
  background: #1B1C25;
  color: var(--main-color-two);
}
.black-themes .signle-featured-items .featured-item-contents .star-reviews {
  color: #fff;
}
.black-themes .signle-featured-items .featured-item-contents .common-title {
  color: #fff;
}
.black-themes .signle-featured-items .featured-item-contents .common-title:hover {
  color: var(--main-color-two);
}
.black-themes .signle-featured-items .cart-loading::before {
  background-color: var(--heading-color);
}

/* Client Logo Area */
.slingle-client {
  -webkit-box-shadow: 0 0 10px #F2F3F5;
          box-shadow: 0 0 10px #F2F3F5;
  padding: 20px 10px;
  height: 100%;
}
.slingle-client.style-02 {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.slingle-client.style-03 {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.slingle-client.clients-bg {
  background: #1B1C25;
}
.slingle-client img {
  text-align: center;
  margin: 0 auto;
}

/* Updated Area */
.updated-area {
  overflow: hidden;
}

.single-updated {
  position: relative;
  z-index: 2;
}
.single-updated .updated-image {
  position: relative;
  z-index: 1;
}
.single-updated .updated-image img {
  border-radius: 10px;
}
.single-updated .updated-image .updated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.single-updated .updated-image .updated-contents {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  z-index: 9;
}
@media only screen and (max-width: 480px) {
  .single-updated .updated-image .updated-contents {
    left: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-updated .updated-image .updated-contents {
    left: 15px;
  }
}
.single-updated .updated-image .updated-contents .updated-top {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 10px;
  display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 14px;
  }
}
.updated-slider-item {
  margin: 15px;
}

.updated-slider .slick-list {
  margin: -15px;
}

/* Popular Products */
.popular-product-wrapper {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 0 30px; */
}
.popular-product-wrapper.column-two .popular-product-single {
  width: calc((100% / 2) - 15px);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-two .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-two .popular-product-single {
    width: 100%;
  }
}
.popular-product-wrapper.column-three .popular-product-single {
  width: calc((100% / 3) - 20px);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-three .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-three .popular-product-single {
    width: 100%;
  }
}
.popular-product-wrapper.column-four .popular-product-single {
  width: calc((100% / 4) - 23px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: 100%;
  }
}

.popular-product-single {
  width: calc((100% / 5) - 26px);
  margin-top: 30px;
  /* display: inline-block;
  width: 20%;
  padding: 0 10px; */
  /* &:nth-child(5n+1) {
      margin-left: -10px;
  }
  &:nth-child(5n+5) {
      margin-right: -10px;
  }
  @include responsive(allPhone) {
      width: 50%;
      &:nth-child(2n+1) {
          margin-left: -10px;
      }
      &:nth-child(2n+2) {
          margin-right: -10px;
      }
  }
  @include responsive(sm) {
      width: 100%;
      padding: 0;
      &:nth-child(2n+1) {
          margin-left: 0px;
      }
      &:nth-child(2n+2) {
          margin-right: 0px;
      }
  } */
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-single {
    width: 100%;
  }
}

/* Comingsoon Area */
.comingsoon-left-wrapper {
  position: relative;
  z-index: 2;
}
.comingsoon-left-wrapper .single-comingsoon {
  margin-left: 250px;
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 0;
  }
}

.comingsoon-shapes {
  position: absolute;
  top: 0;
  left: 0;
}

.comingsoon-right-wrapper {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}

.comingsoon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .comingsoon-row {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-row {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-row {
    display: block;
  }
}

.comingsoon-image {
  text-align: right;
}
.comingsoon-contents {
  background: #000;
  padding: 70px 90px;
  max-width: 490px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-contents {
    padding: 50px 40px;
    max-width: 360px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-contents {
    padding: 30px 30px;
    max-width: 400px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents {
    padding: 30px 20px;
    position: unset;
    top: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents .winter-products {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-contents .winter-products {
    font-size: 17px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-contents .winter-products {
    font-size: 16px;
  }
}
.comingsoon-contents .comingsoon-title {
  font-size: 85px;
  line-height: 80px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 40px;
    line-height: 40px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 33px;
  }
}

/* single Coming soon Ad */
.single-coming-soon-ad {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.single-coming-soon-ad.column-four::before, .single-coming-soon-ad.column-four::after {
  height: 250px;
  width: 250px;
}
.single-coming-soon-ad.column-four .updated-image-contents .updated-contents .updated-title {
  font-size: 28px;
}
.single-coming-soon-ad.column-four .updated-flex-contents {
  padding: 50px 0;
}
.single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
  height: 160px;
  width: 160px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
    height: 140px;
    width: 140px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
    height: 110px;
    width: 100px;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
  margin-right: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
    margin-right: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
    margin: 0 auto 20px;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents .updated-contents {
  margin-right: 0;
}
.single-coming-soon-ad.bg-item-four::before, .single-coming-soon-ad.bg-item-four::after {
  background: #FFF1E8;
}
.single-coming-soon-ad.bg-item-four::after {
  border-color: #FFF1E8;
  background: transparent;
}
.single-coming-soon-ad::before, .single-coming-soon-ad::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -100px;
  height: 300px;
  width: 300px;
  z-index: -1;
  border-radius: 50%;
  background: #D8EFFF;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 280px;
    width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 250px;
    width: 250px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 250px;
    width: 250px;
  }
}
.single-coming-soon-ad::after {
  left: auto;
  right: -20px;
  bottom: auto;
  top: -70px;
  border: 50px solid #D8EFFF;
  background: transparent;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad::after {
    right: -100px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
  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;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    display: block;
    text-align: center;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
  padding: 0 0 0 30px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 20px 0;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
  display: block;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 16px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
  font-size: 85px;
  line-height: 70px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 70px;
    line-height: 65px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 55px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 40px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 32px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
  display: block;
  font-size: 42px;
  color: #333;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 32px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 32px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 24px;
  background-color: var(--main-color-three);
  color: #fff;
  border-radius: 50%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .icon {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .icon {
    height: 40px;
    width: 40px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
  max-width: 340px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 250px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Store Area */
.flash-contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}

.flash-wrapper-single {
  max-width: 600px;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-wrapper-single {
    max-width: 100%;
  }
}

.single-store-main {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.single-store-main.store-border {
  border: 1px solid #f2f3f5;
}
.single-store-main:hover .store-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-store-main:hover .store-image .store-icon-list {
  visibility: visible;
  opacity: 1;
  right: 50px;
}
.single-store-main .store-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-store-main .store-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-store-main .store-image .store-icon-list {
  position: absolute;
  top: 50px;
  right: -150px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.single-store-main .store-image .store-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.single-store-main .store-image .store-icon-list .lists .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-store-main .store-image .store-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.single-store-main .contents {
  padding: 30px 40px 40px;
}
@media only screen and (max-width: 480px) {
  .single-store-main .contents {
    padding: 20px 10px 30px;
  }
}
.single-store-main .contents .flash-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.single-store-main .contents .flash-reviews .flash-title {
  font-size: 28px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 22px;
  }
}
.single-store-main .contents .flash-reviews .flash-title:hover {
  color: var(--main-color-one);
}
.single-store-main .contents .flash-bottom-contents {
  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;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-store-main .contents .flash-bottom-contents .stock-btn {
  color: #30BB6F;
}
.single-store-main .contents .flash-bottom-contents .stock-btn:hover {
  color: var(--main-color-one);
}

.flash-right-wrapper {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 20px;
}
.flash-right-wrapper .flash-col-items {
  width: calc((100% / 3) - 18px);
  margin-top: 30px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 4) - 23px);
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 3) - 18px);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 3) - 18px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 2) - 15px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-right-wrapper .flash-col-items {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .flash-right-wrapper .flash-col-items {
    margin: 30px auto 0;
    text-align: center;
  }
}

.single-flash-item:hover .flash-flex-item .flash-item-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-flash-item .flash-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-flash-item .flash-flex-item {
    gap: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flash-item .flash-flex-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item {
    display: block;
  }
}
.single-flash-item .flash-flex-item .flash-item-image {
  display: block;
  height: 170px;
  width: 150px;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    height: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    height: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    margin: 0 auto 15px;
    text-align: center;
  }
}
.single-flash-item .flash-flex-item .flash-item-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-flash-item .flash-flex-item .flash-item-contents .title:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-contents .price-update-through {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-contents .common-review-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Category Area */
.category-area div[class*=col]:nth-child(4n+2) .single-category .shape-circle {
  top: 20px;
  right: 20px;
  left: auto;
}
.category-area div[class*=col]:nth-child(4n+3) .single-category .shape-circle {
  bottom: 20px;
  right: 10px;
  left: auto;
}
.category-area div[class*=col]:nth-child(4n+4) .single-category .shape-circle {
  top: 20px;
}

.image-contents {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.notification-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 30px;
}

.single-category {
  padding: 70px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category.style-02:hover .category-contents .titles:hover {
  color: var(--main-color-three);
}
.single-category.style-02 .category-contents .titles:hover {
  color: var(--main-color-three);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-category {
    padding: 40px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-category {
    padding: 40px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category {
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-category {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .single-category {
    padding: 30px 15px;
  }
}
.single-category:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.single-category:hover .shape-circle img {
  -webkit-transform: rotate(180deg) scale(1.3);
          transform: rotate(180deg) scale(1.3);
}
.single-category:hover .category-contents .titles {
  color: var(--main-color-one);
}
.single-category:hover .category-contents .notification {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #fff;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.single-category .category-thumb {
  height: 182px;
  width: 182px;
}
.single-category .category-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-category .shape-circle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category .shape-circle img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category .category-contents .titles {
  font-size: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category .category-contents .titles {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category .category-contents .titles {
    font-size: 24px;
  }
}
.single-category .category-contents .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 0;
  right: -30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-category .category-contents .notification {
    right: -20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-category .category-contents .notification {
    height: 22px;
    width: 22px;
    font-size: 10px;
    right: -20px;
  }
}
.single-category .category-contents .collection-btn {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .single-category .category-contents .collection-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category .category-contents .collection-btn {
    font-size: 14px;
  }
}
.single-category .category-contents .collection-btn:hover {
  color: var(--main-color-one);
}

/* Collection area */
.signle-collection {
  position: relative;
  z-index: 2;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.signle-collection:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.signle-collection:hover .collction-thumb .collection-icon-list {
  visibility: visible;
  opacity: 1;
  right: 10px;
}
.signle-collection:hover .collction-thumb .collection-icon-list .lists:nth-child(1) .icon {
  margin-right: 0px;
}
.signle-collection:hover .collction-thumb .collection-icon-list .lists:nth-child(2) .icon {
  margin-left: 0px;
}
.signle-collection:hover .collction-thumb .shopping-icon {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.signle-collection:hover .collection-bottom .common-price-title {
  visibility: hidden;
  opacity: 0;
}
.signle-collection:hover .collection-bottom .collection-cart {
  visibility: visible;
  opacity: 1;
}
.signle-collection.style-02 {
  padding: 0;
}
.signle-collection.style-02 .collction-thumb .shopping-icon.cart-loading::before {
  background-color: var(--main-color-four);
}
.signle-collection.style-02 .collction-thumb .shopping-icon .cart-loading::before {
  background-color: var(--main-color-four);
}
.signle-collection.style-02 .collction-thumb img {
  border-radius: 0;
}
.signle-collection .collction-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.signle-collection .collction-thumb img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.signle-collection .collction-thumb .collection-icon-list {
  position: absolute;
  top: 10px;
  right: -150px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.signle-collection .collction-thumb .collection-icon-list.color-two .lists .icon {
  color: var(--main-color-two);
}
.signle-collection .collction-thumb .collection-icon-list.color-two .lists .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list.color-three .lists .icon {
  color: var(--main-color-three);
}
.signle-collection .collction-thumb .collection-icon-list.color-three .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list.color-three .cart-loading::before {
  background-color: var(--main-color-three);
}
.signle-collection .collction-thumb .collection-icon-list.color-four .lists .icon {
  color: var(--main-color-four);
}
.signle-collection .collction-thumb .collection-icon-list.color-four .lists .icon:hover {
  background: var(--main-color-four);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.signle-collection .collction-thumb .collection-icon-list .lists:nth-child(1) .icon {
  margin-right: 250px;
}
.signle-collection .collction-thumb .collection-icon-list .lists:nth-child(2) .icon {
  margin-left: 150px;
}
.signle-collection .collction-thumb .collection-icon-list .lists .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  height: 45px;
  width: 45px;
  font-size: 24px;
  border-radius: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-collection .collction-thumb .collection-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-collection .collction-thumb .shopping-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 500;
  background: var(--main-color-one);
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 10px;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* &.cart-loading {
      &::before {
          background-color: var(--main-color-four);
      }
  } */
}
.signle-collection .collction-thumb .shopping-icon:hover {
  background: #fff;
  color: var(--main-color-one);
}
.signle-collection .collction-thumb .shopping-icon:hover .icon-list .icons {
  color: var(--extra-light-color);
}
.signle-collection .collction-thumb .shopping-icon .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon .icon-list .icons:hover {
  color: var(--main-color-one);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two {
  background: var(--main-color-two);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover {
  color: var(--main-color-two);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover .icon-list .icons:hover {
  color: var(--main-color-two);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three {
  background: var(--main-color-three);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover {
  color: var(--main-color-three);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover .icon-list .icons:hover {
  color: var(--main-color-three);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four {
  background: var(--main-color-four);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover {
  color: var(--main-color-four);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover .icon-list .icons:hover {
  color: var(--main-color-four);
}
.signle-collection .collection-contents {
  margin-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents {
    margin-top: 15px;
  }
}
.signle-collection .collection-contents .collection-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.signle-collection .collection-contents .collection-flex .collection-flex-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.signle-collection .collection-contents .collection-flex .collection-flex-icon a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-collection .collection-contents .collection-title {
  font-size: 30px;
  color: var(--heading-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 24px;
  }
}
.signle-collection .collection-contents .collection-title:hover {
  color: var(--main-color-one);
}
.signle-collection .collection-contents .collection-title.color-two:hover {
  color: var(--main-color-two);
}
.signle-collection .collection-contents .collection-title.color-three:hover {
  color: var(--main-color-three);
}
.signle-collection .collection-contents .collection-title.color-four:hover {
  color: var(--main-color-four);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .price-update-through .flash-prices {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .price-update-through .flash-prices {
    font-size: 24px;
  }
}
.signle-collection .collection-contents .price-update-through .flash-prices.color-one {
  color: var(--main-color-one);
}
.signle-collection .collection-contents .shopping-icon {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 8px;
  font-size: 24px;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}

.sale {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
}
.sale.sale-radius-1 {
  border-radius: 20px 20px 20px 0;
}

.collection-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.collection-review li {
  color: var(--main-color-one);
}
.collection-review.color-two li {
  color: var(--main-color-two);
}
.collection-review.color-three li {
  color: var(--main-color-three);
}
.collection-review.color-four li {
  color: var(--main-color-four);
}

.collection-bottom {
  position: relative;
  z-index: 2;
  padding-bottom: 15px;
  display: list-item;
}
.collection-bottom .common-price-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.collection-bottom .collection-cart {
  position: relative;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* &::before {
      content: "";
      position: absolute;
      height: 2px;
      width: 0;
      left: 0;
      bottom: 0;
      background: var(--main-color-one);
      z-index: -1;
      transition: $transition;
      visibility: hidden;
      opacity: 0;
  } */
}
.collection-bottom .collection-cart:hover {
  color: var(--main-color-one);
  text-decoration: underline;
  /* &::before {
      visibility: visible;
      opacity: 1;
      width: 100%;
  } */
}
.collection-bottom .collection-cart.color-two {
  color: var(--main-color-two);
}
.collection-bottom .collection-cart.color-two:hover {
  color: var(--main-color-two);
}
.collection-bottom .collection-cart.color-two:hover::before {
  background: var(--main-color-two);
}
.collection-bottom .collection-cart.color-three {
  color: var(--main-color-three);
}
.collection-bottom .collection-cart.color-three:hover {
  color: var(--main-color-three);
}
.collection-bottom .collection-cart.color-three:hover::before {
  background: var(--main-color-three);
}
.collection-bottom .collection-cart.color-four {
  color: var(--main-color-four);
}
.collection-bottom .collection-cart.color-four:hover {
  color: var(--main-color-four);
}
.collection-bottom .collection-cart.color-four:hover::before {
  background: var(--main-color-four);
}

/* Store Area */
.store-tab-area {
  max-height: 1110px;
  overflow-y: auto;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .store-tab-area {
    max-height: 1000px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .store-tab-area {
    max-height: 880px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tab-area {
    max-height: 780px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tab-area {
    max-height: 100%;
    margin-bottom: -10px;
    overflow-y: unset;
  }
}
@media only screen and (max-width: 480px) {
  .store-tab-area {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
  }
}

.store-tabs {
  display: block !important;
}
.store-tabs li {
  font-size: 26px;
  color: var(--light-color);
  line-height: 34px;
  cursor: pointer;
  display: table;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .store-tabs li {
    font-size: 24px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .store-tabs li {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .store-tabs li {
    font-size: 17px;
  }
}
@media only screen and (max-width: 480px) {
  .store-tabs li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .store-tabs li {
    font-size: 14px;
    margin-bottom: 10px !important;
    line-height: 28px;
  }
}
.store-tabs li.active {
  color: var(--main-color-one);
}
.store-tabs li.active::after {
  background: var(--main-color-one);
  width: 105px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li.active::after {
    width: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li.active::after {
    width: 60px;
  }
}
.store-tabs li:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li:not(:last-child) {
    margin-bottom: unset;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .store-tabs li:not(:last-child) {
    margin-right: 20px;
  }
}
.store-tabs li::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0px;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 110%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li::after {
    top: 100%;
    -webkit-transform: unset;
            transform: unset;
    left: 0;
  }
}
.store-tabs li:hover {
  color: var(--main-color-one);
}
.store-tabs li:hover::after {
  background: var(--main-color-one);
  width: 105px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li:hover::after {
    width: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li:hover::after {
    width: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li:hover::after {
    width: 100%;
  }
}

/* Flash Sale */
.section-top-shape {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-top-shape {
    top: -15px;
  }
}
@media only screen and (max-width: 375px) {
  .section-top-shape {
    top: -10px;
  }
}
.section-top-shape img {
  width: 100%;
}

.section-bottom-shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-bottom-shape {
    bottom: -3px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-bottom-shape {
    bottom: -6px;
  }
}
@media only screen and (max-width: 375px) {
  .section-bottom-shape {
    bottom: -8px;
  }
}
.section-bottom-shape img {
  width: 100%;
}

.flash-sale-wrapper {
  position: relative;
  z-index: 1;
}
.flash-sale-wrapper.discount-sale {
  position: relative;
  z-index: 2;
}
.flash-sale-wrapper.discount-sale .flash-sale-contents {
  padding: 83px 0 85px 130px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 100px 0 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 70px 0 70px 30px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 70px 0 70px 10px;
  }
}
.flash-sale-wrapper.discount-sale .flash-sale-contents .flas-sale-title {
  font-size: 70px;
  line-height: 85px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents .flas-sale-title {
    font-size: 50px;
    line-height: 60px;
  }
}
.flash-sale-wrapper.discount-sale .flash-sale-image {
  right: 90px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 5px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 0px;
  }
}
.flash-sale-wrapper.discount-sale .discount-shapes {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.flash-sale-contents {
  padding: 150px 0 125px 160px;
  max-width: 750px;
}
.flash-sale-contents.style-02 {
  margin-left: auto;
  padding: 150px 210px 125px 0px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-contents.style-02 {
    padding: 150px 30px 150px 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-contents.style-02 {
    padding: 150px 30px 150px 130px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents.style-02 {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents.style-02 {
    padding: 80px 0px 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents.style-02 {
    padding: 80px 0px 100px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents {
    padding: 100px 0 100px 30px;
    max-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents {
    max-width: 100%;
    padding: 80px 0 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents {
    max-width: 100%;
    padding: 80px 0 100px 10px;
  }
}
.flash-sale-contents .flas-sale-title {
  font-size: 100px;
  line-height: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 575.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 50px;
    line-height: 50px;
  }
}
.flash-sale-contents .flash-btn {
  margin-top: 45px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn {
    margin-top: 20px;
  }
}
.flash-sale-contents .flash-btn .flash-store {
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color-one);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 14px;
  }
}
.flash-sale-contents .flash-btn .flash-store::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--heading-color);
  color: #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn .flash-store::before {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-contents .flash-btn .flash-store::before {
    height: 30px;
    width: 30px;
    font-size: 20px;
  }
}
.flash-sale-contents .flash-btn .flash-store:hover {
  color: var(--main-color-one);
}
.flash-sale-contents .flash-btn .flash-store:hover::before {
  background: var(--main-color-one);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-two {
  color: var(--main-color-two);
}
.flash-sale-contents .flash-btn .flash-store.color-two:hover {
  color: var(--main-color-two);
}
.flash-sale-contents .flash-btn .flash-store.color-two:hover::before {
  background: var(--main-color-two);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-three {
  color: var(--main-color-three);
}
.flash-sale-contents .flash-btn .flash-store.color-three:hover {
  color: var(--main-color-three);
}
.flash-sale-contents .flash-btn .flash-store.color-three:hover::before {
  background: var(--main-color-three);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-four {
  color: var(--main-color-four);
}
.flash-sale-contents .flash-btn .flash-store.color-four:hover {
  color: var(--main-color-four);
}
.flash-sale-contents .flash-btn .flash-store.color-four:hover::before {
  background: var(--main-color-four);
  color: #fff;
}

.flash-sale-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.flash-sale-image img {
  height: 100%;
}
@media only screen and (max-width: 575.98px) {
  .flash-sale-image {
    display: none;
  }
}
.flash-sale-image.style-02 {
  right: auto;
  left: 200px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-image.style-02 {
    left: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-image.style-02 {
    left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-image.style-02 {
    left: 20px;
    height: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-image.style-02 {
    left: 100px;
  }
}

.flash-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
.flash-wave-top img {
  width: 100%;
}

.flash-middle-shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-middle-shapes {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-middle-shapes.style-02 {
    bottom: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}

.sale-offer {
  font-size: 54px;
  line-height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 192px;
  width: 192px;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 150px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.sale-offer.style-02 {
  font-size: 36px;
  line-height: 50px;
  right: auto;
  left: 220px;
  top: 70%;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .sale-offer.style-02 {
    left: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sale-offer.style-02 {
    font-size: 32px;
    line-height: 40px;
    left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer.style-02 {
    font-size: 32px;
    line-height: 40px;
    left: 50px;
    top: 50%;
    height: 185px;
    width: 185px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer.style-02 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer.style-02 {
    font-size: 26px;
    height: 130px;
    width: 130px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .sale-offer.style-02 {
    font-size: 22px;
    height: 110px;
    width: 110px;
    line-height: 28px;
  }
}
.sale-offer.style-03 {
  font-size: 36px;
  line-height: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sale-offer.style-03 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer.style-03 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer.style-03 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer.style-03 {
    font-size: 26px;
    height: 130px;
    width: 130px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .sale-offer.style-03 {
    font-size: 22px;
    height: 110px;
    width: 110px;
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer {
    top: 30px;
    right: 30px;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer {
    position: initial;
    margin-left: 30px;
    font-size: 40px;
    height: 150px;
    width: 150px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer {
    font-size: 30px;
    height: 100px;
    width: 100px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer {
    margin-left: 10px;
  }
}

/* Spray Area */
.spray-area {
  position: relative;
  z-index: 1;
}

.sparay-shape::before {
  content: "";
  position: absolute;
  height: 647px;
  width: 647px;
  border-radius: 50%;
  background: #FFF1E8;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sparay-shape::before {
    height: 400px;
    width: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .sparay-shape::before {
    height: 350px;
    width: 350px;
  }
}
@media only screen and (max-width: 375px) {
  .sparay-shape::before {
    height: 300px;
    width: 300px;
  }
}

.spray-image-contents {
  text-align: right;
  position: relative;
  z-index: 2;
}
.spray-image-contents .sparay-image-shape img {
  position: absolute;
  z-index: -1;
}
.spray-image-contents .sparay-image-shape img:nth-child(1) {
  bottom: -60px;
  right: -60px;
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}
.spray-image-contents .sparay-image-shape img:nth-child(2) {
  left: -25px;
  bottom: 60px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.spray-image-contents .sparay-image-shape img:nth-child(3) {
  left: -60px;
  top: -30px;
  z-index: 9;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}

.spray-contents {
  padding: 160px 0 160px 100px;
  position: relative;
  z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents {
    padding: 30px 0px 0px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents {
    padding: 30px 0px 0px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents {
    padding: 30px 200px 0px 30px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .spray-contents {
    padding: 30px 80px 0px 0px !important;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents {
    padding: 30px 10px 0px 0px !important;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents {
    padding: 30px 0px 0px 0px !important;
  }
}
.spray-contents .spray-title {
  font-size: 90px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents .spray-title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents .spray-title {
    font-size: 70px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .spray-title {
    font-size: 60px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .spray-contents .spray-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents .spray-title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .spray-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.spray-contents .spray-price {
  font-size: 60px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents .spray-price {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents .spray-price {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .spray-price {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .spray-contents .spray-price {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .spray-price {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .btn-wrapper {
    margin-top: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 16px !important;
    padding: 7px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 15px !important;
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 14px !important;
    padding: 5px 15px;
  }
}
.spray-contents .btn-wrapper .cmn-btn.btn-bg-heading:hover {
  background: #fff;
  color: var(--heading-color);
}

.collection-shapes img {
  position: absolute;
  z-index: -1;
}
.collection-shapes img:nth-child(1) {
  bottom: 0;
  right: -150px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.collection-shapes img:nth-child(2) {
  bottom: 200px;
  right: 200px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.collection-shapes.collection-five img:nth-child(1) {
  bottom: 0;
  left: -150px;
}
.collection-shapes.collection-five img:nth-child(2) {
  left: 100px;
  top: 0;
}
.collection-shapes.collection-five img:nth-child(3) {
  bottom: 50%;
  right: 150px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}

/* Arrivals Area */
.signle-arrivals .arrivals-contents {
  padding-top: 20px;
}
.signle-arrivals .arrivals-contents .arrivals-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-arrivals .arrivals-contents .arrivals-title:hover {
  color: var(--main-color-one);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.signle-arrivals .arrivals-contents .categories {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.signle-arrivals .arrivals-contents .categories:not(:last-child) {
  margin-right: 5px;
}
.signle-arrivals .arrivals-contents .categories:not(:last-child)::after {
  content: ",";
}
.signle-arrivals .arrivals-contents .categories:hover {
  color: var(--main-color-four);
}

.flex-space-contents {
  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;
  gap: 10px;
}

.flex-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

/* Release Area */
.release-wrapper {
  position: relative;
  z-index: 2;
}

.release-contents {
  padding: 90px 0;
  max-width: 530px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents {
    margin-left: 30px;
    padding: 70px 0 80px;
  }
}
.release-contents .release-title {
  font-size: 100px;
  line-height: 120px;
  font-weight: 300;
}
.release-contents .release-title .release-top {
  display: block;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents .release-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .release-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.release-contents .release-price {
  font-size: 60px;
  font-weight: 500;
  line-height: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents .release-price {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .release-price {
    font-size: 30px;
    line-height: 36px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .btn-wrapper {
    margin-top: 30px;
  }
}

.release-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
.release-shapes {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
}
/* Buy & Get area */
.buy-contents-wrapper {
  position: relative;
  z-index: 2;
  background: var(--heading-color);
  border-radius: 0 170px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-contents-wrapper {
    border-radius: 0 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-contents-wrapper {
    border-radius: 0 50px;
  }
}

.wave-shapes {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .wave-shapes {
    bottom: auto;
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wave-shapes {
    bottom: auto;
    top: 0;
  }
}
.buy-image-wrapper {
  position: relative;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
.buy-image-wrapper .buy-images {
  height: 100%;
  max-width: 770px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-image-wrapper .buy-images {
    max-width: 700px;
  }
}
.buy-image-wrapper .buy-images img {
  border-radius: 0 170px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper .buy-images img {
    border-radius: 0 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-image-wrapper .buy-images img {
    border-radius: 0 50px;
  }
}
.buy-image-wrapper .buy-shapes {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -110px;
  z-index: 9;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .buy-image-wrapper .buy-shapes {
    right: -80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-image-wrapper .buy-shapes {
    right: -70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -70px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -30px;
  }
}
.buy-wrapper {
  max-width: 630px;
  margin-left: auto;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-wrapper {
    max-width: 500px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .buy-wrapper {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper {
    margin-left: 10px;
  }
}
.buy-wrapper .buy-contents {
  padding: 130px 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-wrapper .buy-contents {
    padding: 130px 0 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-wrapper .buy-contents {
    padding: 130px 0 0px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-wrapper .buy-contents {
    padding: 80px 0 0;
  }
}
.buy-wrapper .buy-contents .buy-top-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-top-title {
    margin-bottom: 15px;
    font-size: 26px !important;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-top-title {
    font-size: 22px !important;
  }
}
.buy-wrapper .buy-contents .buy-title {
  color: #fff;
  font-size: 60px;
  line-height: 90px;
}
.buy-wrapper .buy-contents .buy-title span {
  font-size: 90px;
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767.98px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 55px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 45px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .btn-wrapper {
    margin-top: 30px;
  }
}

.black-themes .buy-contents-wrapper {
  background: var(--heading-color);
}
.black-themes .buy-contents .buy-title {
  color: #fff;
}

/* Instagram area */
.instagram-wrapper {
  position: relative;
  z-index: 2;
}

.instagram-contents {
  text-align: center;
  display: inline-block;
  padding: 20px 30px 30px;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 480px) {
  .instagram-contents {
    padding: 10px 20px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .instagram-contents {
    padding: 10px 10px 20px;
  }
}
.instagram-contents.style-02 {
  background: #fff;
  color: var(--light-color);
}
.instagram-contents .icon {
  font-size: 30px;
  display: block;
}
.instagram-contents .icon:hover {
  color: var(--main-color-one);
}
.instagram-contents .icon.hover-color-two:hover {
  color: var(--main-color-two);
}
.instagram-contents .icon.hover-color-three:hover {
  color: var(--main-color-three);
}
.instagram-contents .icon.hover-color-four:hover {
  color: var(--main-color-four);
}
.instagram-contents .instagram-title.white-color {
  color: #fff;
}
.instagram-contents .instagram-title:hover {
  color: var(--main-color-one);
}
.instagram-contents .instagram-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.instagram-contents .instagram-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.instagram-contents .instagram-title.hover-color-four:hover {
  color: var(--main-color-four);
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .single-instagram.style-02 .instagram-image {
    height: 220px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .single-instagram.style-02 .instagram-image {
    height: 200px;
  }
}
@media only screen and (max-width: 375px) {
  .single-instagram.style-02 .instagram-image {
    height: 150px;
    border-radius: 10px;
  }
}
.single-instagram .instagram-image {
  height: 320px;
  width: 100%;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-instagram .instagram-image {
    height: 280px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-instagram .instagram-image {
    height: 250px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-instagram .instagram-image {
    height: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-instagram .instagram-image {
    height: 250px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-instagram .instagram-image {
    height: auto;
  }
}
.single-instagram .instagram-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.black-themes .instagram-contents.style-02 {
  background: #1B1C25;
}
.black-themes .instagram-contents.style-02 .instagram-title {
  color: #fff;
}
.black-themes .instagram-contents.style-02 .instagram-title:hover {
  color: var(--main-color-two);
}

/* Badge Area */
.badge-area {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.badge-shapes img {
  position: absolute;
  z-index: -1;
}
.badge-shapes img:nth-child(1) {
  left: -200px;
  top: -200px;
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}
.badge-shapes img:nth-child(2) {
  left: 5%;
  top: 40%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(3) {
  left: 20%;
  bottom: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(4) {
  right: 15%;
  bottom: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(5) {
  right: -80px;
  bottom: 10px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}

.badge-padding {
  padding: 160px 0 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-padding {
    padding: 120px 0 70px;
  }
}

.badge-contents {
  text-align: center;
}
.badge-contents .badge-title {
  font-size: 60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-contents .badge-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .badge-contents .badge-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .badge-contents .badge-title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 375px) {
  .badge-contents .badge-title {
    font-size: 33px;
  }
}
.badge-contents .bage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.badge-contents .bage-list .list {
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-contents .bage-list .list {
    font-size: 17px;
  }
}
@media only screen and (max-width: 480px) {
  .badge-contents .bage-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .badge-contents .bage-list .list {
    font-size: 15px;
  }
}
.badge-contents .bage-list .list:hover {
  color: var(--main-color-one);
}
.badge-contents .bage-list .list:not(:last-child) {
  padding-right: 20px;
}
.badge-contents .bage-list .list:not(:last-child)::after {
  content: "";
  position: absolute;
  background: var(--extra-light-color);
  height: 15px;
  width: 2px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.badge-contents .bage-list .list:not(:first-child) {
  padding-left: 20px;
}
.badge-contents.hover-color-one .bage-list .list:hover {
  color: var(--main-color-one);
}
.badge-contents.hover-color-two .bage-list .list:hover {
  color: var(--main-color-two);
}
.badge-contents.hover-color-three .bage-list .list:hover {
  color: var(--main-color-three);
}
.badge-contents.hover-color-four .bage-list .list:hover {
  color: var(--main-color-four);
}

/* Shop Area */
.shop-area {
  overflow: hidden;
}

.shop-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right {
    gap: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .shop-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}
.shop-right .single-shops .nice-select {
  font-size: 16px;
  color: var(--light-color);
  border: 0;
  outline: none;
  height: 30px;
  line-height: 30px;
}
@media only screen and (max-width: 575.98px) {
  .shop-right .single-shops .nice-select {
    padding: 0 30px 0 0;
  }
}
.shop-right .single-shops .nice-select::after {
  border-bottom: 2px solid var(--light-color);
  border-right: 2px solid var(--light-color);
  right: 10px;
}
.shop-right .single-shops .nice-select .list {
  min-width: 100% !important;
}
.shop-right .single-shops .shop-flex-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.shop-right .single-shops .shop-icons {
  font-size: 24px;
  height: 40px;
  width: 40px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop-right .single-shops .shop-icons.active {
  background: #F2F3F5;
}

.selectder-filter-contents .selected-flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.selectder-filter-contents .selected-flex-list li {
  font-size: 16px;
  color: var(--extra-light-colors);
  line-height: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 575.98px) {
  .selectder-filter-contents .selected-flex-list li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li {
    font-size: 14px;
  }
}
.selectder-filter-contents .selected-flex-list li a {
  color: var(--light-color);
  position: relative;
  z-index: 2;
}
.selectder-filter-contents .selected-flex-list li a:hover {
  color: var(--main-color-one);
}
.selectder-filter-contents .selected-flex-list li a:hover::after {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.selectder-filter-contents .selected-flex-list li:not(:last-child) a {
  padding-right: 20px;
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a {
    padding-right: 10px;
  }
}
.selectder-filter-contents .selected-flex-list li:not(:last-child) a::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  right: -8px;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a::after {
    font-size: 14px;
    right: -6px;
  }
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a::after {
    right: -7px;
  }
}
.selectder-filter-contents .selected-flex-list li:not(:first-child) a {
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:first-child) a {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li:not(:first-child) a {
    padding-left: 10px;
  }
}

.shop-contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-contents-wrapper {
    display: block;
  }
}
.shop-contents-wrapper.style-02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.shop-contents-wrapper.style-02 .shop-left-content {
  margin-left: auto;
}
.shop-contents-wrapper.style-02 .shop-close-main {
  left: auto;
  right: 0;
}
.shop-contents-wrapper.style-02 .shop-close-main.active {
  left: auto;
  right: 0;
}
.shop-contents-wrapper.style-02 .shop-close-main .close-bars {
  right: auto;
  left: -40px;
}
.shop-contents-wrapper.style-02 .shop-icon .sidebar-icon {
  margin-left: auto;
}
.shop-contents-wrapper .shop-left-content {
  min-width: 375px;
  width: 375px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-contents-wrapper .shop-left-content {
    min-width: 320px;
    width: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-contents-wrapper .shop-left-content {
    min-width: 320px;
    width: 320px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-contents-wrapper .shop-left-content {
    max-width: 375px;
    width: 375px;
  }
}
.shop-contents-wrapper .shop-right-contents {
  width: 100%;
}

.single-shop-left {
  padding: 35px 40px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
.single-shop-left .shop-left-title.open .title::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.single-shop-left .shop-left-title .title {
  cursor: pointer;
  position: relative;
  line-height: 36px;
}
.single-shop-left .shop-left-title .title::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list {
  font-size: 16px;
  line-height: 26px;
  display: block;
  position: relative;
  text-align: left;
  z-index: 2;
  padding-left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list a {
  display: block;
  padding: 10px 0;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.active::before {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.active a {
  color: var(--light-color);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:hover > a {
  color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:hover::before {
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children:hover::after {
  color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  left: 0;
  top: 17px;
  background: none;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu {
  display: none;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list {
  line-height: 22px;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list::before {
  top: 9px;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list a {
  padding: 5px 0;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  cursor: pointer;
  z-index: -1;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children.open::after {
  content: "";
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:last-child a {
  padding-bottom: 0;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list {
  position: relative;
  z-index: 1;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 20px;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list a {
  display: block;
  height: 30px;
  width: 30px;
  background: #F83A26;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list.active a {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  color: #fff;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 45px;
  font-size: 14px;
  background: #fff;
  color: var(--light-color);
  border: 1px solid #dddddd;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 20px;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list.active::before {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list a {
  font-size: 16px;
  line-height: 26px;
  color: #FFBA5C;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list:not(:last-child) {
  margin-bottom: 7px;
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 480px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists {
    gap: 10px;
  }
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list.active a {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
  border: 1px solid #dddddd;
  font-size: 16px;
  color: var(--light-color);
  padding: 7px 20px;
  display: inline-block;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    padding: 7px 17px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    padding: 7px 17px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list a:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.shop-icon {
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-icon {
    display: block;
  }
}
.shop-icon .sidebar-icon {
  font-size: 24px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  z-index: 95;
  color: #fff;
  margin-bottom: 20px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-close-main {
    z-index: 1;
    position: absolute;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99;
    background: #fff;
    max-width: 375px;
    display: block;
    padding: 20px;
    transition: all 0.5s;
  }
  .shop-close-main.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 991.98px) and (max-width: 480px) {
  .shop-close-main {
    max-width: 320px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 991.98px) and (max-width: 375px) {
  .shop-close-main {
    max-width: 270px;
  }
}
.shop-close-main .close-bars {
  position: absolute;
  right: -40px;
  top: 0;
  font-size: 24px;
  color: #fff;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-close-main .close-bars {
    display: block;
  }
}

.recent-post-contents .recent-post-single:not(:last-child) {
  margin-bottom: 20px;
}
.recent-post-contents .recent-post-single .recent-post-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex {
    display: block;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb {
  margin-right: 15px;
  height: 80px;
  min-width: 80px;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-post-title {
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-post-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-date {
  display: block;
  margin-top: 5px;
}

.sidebar-search-form .single-search-sidebar {
  position: relative;
  z-index: 1;
}
.sidebar-search-form .single-search-sidebar .form--control {
  border: 0;
  background: rgba(221, 221, 221, 0.2);
  padding: 0 40px 0 15px;
}
.sidebar-search-form .single-search-sidebar button {
  position: absolute;
  right: 15px;
  top: 0;
  height: 100%;
  background: none;
  font-size: 20px;
  z-index: 2;
  border: 0;
  cursor: pointer;
  outline: none;
}

/* Shop List */
.shop-list-wrapper {
  padding: 20px;
}
.shop-list-wrapper .shop-wrapper-flex {
  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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-list-wrapper .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-thumbs {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-thumbs img {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-list-contents {
    margin-top: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart::before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart::before {
    display: none;
  }
}
.shop-list-wrapper.style-02 .single-shop-cart .shop-cart-flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.single-shop-cart {
  text-align: center;
  position: relative;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart {
    text-align: left;
    padding-top: 20px;
  }
}
.single-shop-cart::before {
  content: "";
  position: absolute;
  height: 150%;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  background: #DDD;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-cart::before {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart::before {
    display: none;
  }
}
.single-shop-cart .shop-cart-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-cart .shop-cart-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-cart .shop-cart-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart .shop-cart-flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .single-shop-cart .shop-cart-flex {
    gap: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-cart .shop-cart-flex {
    gap: 20px;
  }
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 480px) {
  .single-shop-cart .shop-cart-flex .btn-shop-botttom {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-cart .shop-cart-flex .btn-shop-botttom {
    font-size: 20px;
    gap: 10px;
  }
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom .icons {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom .icons:hover {
  color: var(--main-color-one);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-two .icons:hover {
  color: var(--main-color-two);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-three .icons:hover {
  color: var(--main-color-three);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-four .icons:hover {
  color: var(--main-color-four);
}

.signle-shop-list .shop-list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-flex {
    display: block;
  }
}
.signle-shop-list .shop-thumbs {
  height: 375px;
  width: 375px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-thumbs {
    height: 100%;
    width: 100%;
  }
}
.signle-shop-list .shop-thumbs img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-contents {
    padding-top: 20px;
  }
}
.signle-shop-list .shop-list-contents .global-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-contents .global-shop-list {
    margin-top: 15px;
  }
}
.signle-shop-list .shop-list-contents .global-shop-list .list .star {
  color: #FFBA5C;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .shop-size {
  position: relative;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:last-child) .shop-size {
  padding-right: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:last-child) .shop-size::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #999;
  z-index: -1;
  height: 12px;
  width: 2px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:first-child) .shop-size {
  padding-left: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .color-list {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin-left: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .artificial {
  margin-left: 10px;
}

/* Shop Details Area */
.single-shop-details-wrapper {
  overflow-y: auto;
  height: 930px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-details-wrapper {
    max-height: 800px;
    overflow-y: scroll;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper {
    max-height: 700px;
    overflow-y: scroll;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper {
    max-height: 600px;
    overflow-y: scroll;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-details-wrapper {
    margin-top: 20px;
  }
}
.single-shop-details-wrapper .common-para {
  margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper .common-para {
    margin-top: 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper .common-para {
    margin-top: 15px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper .price-update-through {
    margin-top: 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper .price-update-through {
    margin-top: 15px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-shop-details-wrapper .price-update-through .flash-prices {
    font-size: 28px !important;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-details-wrapper .price-update-through .flash-old-prices {
    font-size: 20px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area {
    margin-top: 20px;
  }
}
.value-input-area .input-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.value-input-area .input-list .form--input {
  width: auto;
  border: 0;
  outline: none;
  color: var(--extra-light-color);
}
.value-input-area .size-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 4px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .value-input-area .size-lists {
    margin-top: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area .size-lists {
    margin-top: 4px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .value-input-area .size-lists {
    margin-top: 4px;
  }
}
.value-input-area .size-lists li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  height: 45px;
  width: 45px;
  border: 1px solid #999;
}
.value-input-area .size-lists li.active {
  border-color: var(--main-color-one);
}
@media only screen and (max-width: 480px) {
  .value-input-area .size-lists li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .value-input-area .size-lists li {
    font-size: 14px;
    height: 40px;
    width: 40px;
  }
}
.value-input-area .color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 4px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .value-input-area .color-list {
    margin-top: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area .color-list {
    margin-top: 4px;
  }
}
.value-input-area .color-list li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}
.value-input-area .color-list li.active {
  height: 30px;
  width: 30px;
}
.value-input-area .color-list li.active::before {
  content: "";
  position: absolute;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  left: -4px;
  top: -4px;
  border: 1px solid #F83A26;
}
.value-input-area .color-list li.shop-color-2 {
  border-color: #30BB6F;
}
.value-input-area .color-list li.shop-color-2.active::before {
  border: 1px solid #30BB6F;
}
.value-input-area .color-list li.shop-color-3 {
  border-color: #AB47BC;
}
.value-input-area .color-list li.shop-color-3.active::before {
  border: 1px solid #AB47BC;
}
.value-input-area .color-list li.shop-color-4 {
  border-color: #FFC576;
}
.value-input-area .color-list li.shop-color-4.active::before {
  border: 1px solid #FFC576;
}
.value-input-area .color-list li.shop-color-5 {
  border-color: #040B25;
}
.value-input-area .color-list li.shop-color-5.active::before {
  border: 1px solid #040B25;
}
.value-input-area .color-list li.shop-color-6 {
  border: 1px solid #FF9800;
}
.value-input-area .color-list li.shop-color-6.active::before {
  border: 1px solid #FF9800;
}
.value-input-area .color-list li.shop-color-7 {
  border: 1px solid #FF695C;
}
.value-input-area .color-list li.shop-color-7.active::before {
  border: 1px solid #FF695C;
}

.customer-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .customer-review {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .customer-review {
    margin-top: 20px;
  }
}
.customer-review .star-review a {
  color: #FFBA5C;
  font-size: 20px;
  line-height: 26px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .quantity-area {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .quantity-area {
    margin-top: 20px;
  }
}
.quantity-area .quantity-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.product-quantity {
  position: relative;
  z-index: 3;
}
.product-quantity .quantity-input {
  width: 124px;
  height: 40px;
  border: 1px solid #999;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}
.product-quantity .substract,
.product-quantity .plus {
  color: var(--light-color);
  z-index: 9;
  cursor: pointer;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-quantity .substract:hover,
.product-quantity .plus:hover {
  color: var(--main-color-one);
}
.product-quantity .plus {
  left: auto;
  right: 5px;
}

.quantity-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .quantity-btn {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .quantity-btn {
    margin-top: 25px;
  }
}
.quantity-btn .heart-btn {
  height: 55px;
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #F83A26;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.quantity-btn .heart-btn:hover {
  background: var(--main-color-one);
  color: #fff;
}
@media only screen and (max-width: 375px) {
  .quantity-btn .heart-btn {
    height: 45px;
    width: 45px;
    font-size: 24px !important;
  }
}

.shop-details-stock .stock-available {
  color: #30BB6F;
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
}
.shop-details-stock .stock-available .count-stock {
  color: var(--extra-light-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .stock-category {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .stock-category {
    margin-top: 20px;
  }
}
.shop-details-stock .stock-category li {
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .shop-details-stock .stock-category li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-stock .stock-category li {
    font-size: 14px;
  }
}
.shop-details-stock .stock-category li:not(:last-child) {
  padding-bottom: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .stock-category li:not(:last-child) {
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .stock-category li:not(:last-child) {
    margin-top: 15px;
  }
}
.shop-details-stock .stock-category li a:hover {
  color: var(--main-color-one);
}
.shop-details-stock .size-chart-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .size-chart-list {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .size-chart-list {
    margin-top: 25px;
  }
}
.shop-details-stock .size-chart-list li a {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  border-bottom: 1px solid #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
  .shop-details-stock .size-chart-list li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-stock .size-chart-list li a {
    font-size: 14px;
    line-height: 22px;
  }
}
.shop-details-stock .size-chart-list li a:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}

.shop-details-top-slider .shop-details-thumb-wrapper {
  height: auto;
}
.shop-details-top-slider .shop-details-thumb-wrapper .shop-details-thums img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-details-click-img .shop-small-thumb-wrapper {
  cursor: pointer;
}

.single-shop-details-wrapper {
  max-width: 585px;
}

.details-tab-wrapper .details-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .details-tab-wrapper .details-tab {
    gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .details-tab-wrapper .details-tab {
    gap: 10px;
  }
}
.details-tab-wrapper .details-tab li {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  background: none;
  border: 1px solid #999;
  color: var(--heading-color);
  padding: 10px 35px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .details-tab-wrapper .details-tab li {
    font-size: 16px;
    font-weight: 400;
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .details-tab-wrapper .details-tab li {
    font-size: 15px;
    padding: 6px 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .details-tab-wrapper .details-tab li {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.details-tab-wrapper .details-tab li.active {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.details-tab-wrapper .details-tab li:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.details-tab-wrapper .details-tab.hover-color-two li.active {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.details-tab-wrapper .details-tab.hover-color-two li:hover {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.details-tab-wrapper .details-tab.hover-color-three li.active {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.details-tab-wrapper .details-tab.hover-color-three li:hover {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.details-tab-wrapper .details-tab.hover-color-four li.active {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}
.details-tab-wrapper .details-tab.hover-color-four li:hover {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}

.single-details-tab .tab-description .description-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  padding-top: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-details-tab .tab-description .description-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-details-tab .tab-description .description-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-details-tab .tab-description .description-para {
    font-size: 14px;
  }
}
.about-seller-flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0;
  gap: 30px;
}
@media only screen and (max-width: 480px) {
  .about-seller-flex-content {
    display: block;
  }
}
@media only screen and (max-width: 575.98px) {
  .about-seller-flex-content {
    padding: 30px 0;
  }
}
.about-seller-flex-content:not(:first-child) {
  border-top: 2px solid rgba(221, 221, 221, 0.5);
}
.about-seller-flex-content .about-seller-thumb {
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .about-seller-flex-content .about-seller-thumb {
    width: 80px;
    margin-bottom: 15px;
  }
}
.about-seller-flex-content .about-seller-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-seller-flex-content .about-seller-content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.about-seller-flex-content .about-seller-content .about-seller-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .icon {
  color: var(--main-color-one);
  font-size: 12px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .reviews {
  margin-left: 10px;
}
.about-seller-flex-content .about-seller-content .about-review-para {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 20px;
  line-height: 26px;
}
.about-seller-flex-content .about-seller-content .review-date {
  margin-top: 20px;
  display: block;
}

.seller-details-box {
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 30px;
  border-radius: 10px;
}
@media only screen and (max-width: 480px) {
  .seller-details-box {
    padding: 20px 10px;
  }
}
.seller-details-box .seller-box-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (max-width: 480px) {
  .seller-details-box .seller-box-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.seller-details-box .seller-box-list .box-list {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}
.seller-details-box .seller-box-list .box-list strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 28px;
  margin-top: 5px;
}
.seller-details-box .seller-details-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media only screen and (max-width: 575.98px) {
  .seller-details-box .seller-details-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .seller-details-box .seller-details-para {
    font-size: 14px;
  }
}

.shop-details-faq-contents {
  height: 650px;
  overflow-y: auto;
}
.shop-details-faq-contents .faq-contents .faq-item {
  margin-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item:last-child {
  border-bottom: 2px solid #DDD;
}
.shop-details-faq-contents .faq-contents .faq-item.open .faq-title {
  background: none;
  color: var(--heading-color);
}
.shop-details-faq-contents .faq-contents .faq-item.open .faq-title::after {
  content: "";
  color: var(--light-color);
}
.shop-details-faq-contents .faq-contents .faq-item.active .faq-panel {
  display: block;
  background: none;
  padding: 0;
}
.shop-details-faq-contents .faq-contents .faq-item:not(:first-child) {
  margin-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-title {
  font-size: 24px;
  font-weight: 500;
  border: none;
  padding: 50px 0 30px;
  border-top: 2px solid #DDD !important;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
  content: "";
  color: var(--light-color);
  font-size: 24px;
  right: 0;
  margin-top: 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 22px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    font-size: 16px;
  }
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 30px 0;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 22px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    font-size: 16px;
  }
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel {
  padding: 0;
  background: none !important;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 14px;
    line-height: 26px;
  }
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .about-seller-flex-content {
  padding: 0 0 10px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .seller-details-box {
  border: 0;
  padding: 10px 0 30px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .seller-details-box .seller-details-para {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review {
  padding-bottom: 30px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content {
  padding: 20px 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content:first-child {
  padding-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content .about-seller-content .about-review-para {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Blog Area */
.single-blog {
  overflow: hidden;
}
.single-blog.style-02 {
  padding: 20px;
}
.single-blog.style-02 .contents .blog-title {
  font-size: 28px;
  line-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.single-blog.style-02 .contents .blog-title:hover {
  color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog.style-02 .contents .blog-title {
    font-size: 32px;
  }
}
.single-blog.style-03 .blog-image img {
  border-radius: 0;
}
.single-blog.style-03 .contents .blog-title {
  font-size: 28px;
  line-height: 36px;
}
.single-blog.style-03 .contents .blog-title:hover {
  color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog.style-03 .contents .blog-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog.style-03 .contents .blog-title {
    font-size: 24px;
  }
}
.single-blog:hover .featured-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-blog:hover .featured-image .featured-icon-list {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.single-blog .blog-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-blog .blog-image img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-blog .contents {
  padding-top: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents {
    padding-top: 10px;
  }
}
.single-blog .contents .category {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.single-blog .contents .category:not(:first-child)::before {
  content: ",";
}
.single-blog .contents .common-title:hover {
  color: var(--main-color-one);
}
.single-blog .contents .common-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.single-blog .contents .common-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.single-blog .contents .common-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.single-blog .contents .blog-grid-title {
  font-size: 28px;
  line-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 30px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 28px !important;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 26px !important;
    line-height: 36px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 24px !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .blog-grid-title {
    font-size: 22px !important;
  }
}
.single-blog .contents .blog-grid-title:hover {
  color: var(--main-color-one);
}
.single-blog .contents .blog-grid-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.single-blog .contents .blog-grid-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.single-blog .contents .blog-grid-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.single-blog .contents .blog-para {
  line-height: 30px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents .blog-para {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .blog-para {
    font-size: 15px !important;
    -webkit-line-clamp: 3;
  }
}
.single-blog .contents .dates {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
@media only screen and (max-width: 480px) {
  .single-blog .contents .dates {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .dates {
    font-size: 14px;
  }
}

/* Blog Details area */
.shop-right-contents.style-02 .single-blog-details blockquote {
  padding: 25px 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 25px 15px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 20px 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote .content .blackquote-title {
    font-size: 26px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex {
    display: block;
  }
}
.shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
  min-width: 475px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .details-tag-area .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .details-tag-area .row .col-lg-6 {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .social-share ul {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .tag-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .tag-list ul {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .related-area .row .col-lg-6 {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.single-blog-details:not(:first-child) {
  margin-top: 35px;
}
.single-blog-details .blog-details-title {
  font-size: 36px;
  line-height: 48px;
  margin: -6px 0 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details .blog-details-title {
    font-size: 34px;
  }
}
.single-blog-details .blog-details-flex {
  gap: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details .blog-details-flex {
    gap: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details .blog-details-flex {
    gap: 20px;
  }
}
.single-blog-details .blog-details-flex .dates {
  font-size: 18px;
  line-height: 30px;
}
.single-blog-details .blog-details-flex .dates i {
  color: var(--main-color-one);
}
.single-blog-details .blog-details-para {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 30px;
  color: var(--light-color);
  -webkit-line-clamp: unset;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details .blog-details-para {
    font-size: 17px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details .blog-details-para {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details .blog-details-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-blog-details .blog-details-para {
    font-size: 15px;
    -webkit-line-clamp: 4;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details .blog-details-para {
    font-size: 14px;
  }
}
.single-blog-details blockquote {
  background: #FFF8F0;
  padding: 25px 50px;
  margin: 50px auto 20px;
  max-width: 1290px;
  display: inline-block;
  border-bottom: 5px solid #F83A26;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote {
    padding: 25px 70px 25px 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote {
    padding: 20px 30px 20px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote {
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details blockquote {
    padding: 20px 10px 20px 10px;
  }
}
.single-blog-details blockquote .content .blackquote-title {
  font-size: 36px;
  font-weight: 400;
  position: relative;
  line-height: 43px;
  color: var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 32px;
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 29px;
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 28px;
    line-height: 36px;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 22px;
  }
}
.single-blog-details blockquote .content .blackquote-title::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  color: var(--main-color-one);
  font-size: 90px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 40px;
  }
}

.blog-details-thumb-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-details-thumb-flex {
    display: block;
  }
}
.blog-details-thumb-flex .thumb {
  min-width: 880px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 750px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-details-thumb-flex .thumb {
    margin-bottom: 30px;
    min-width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 575.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 100%;
    height: auto;
  }
}
.blog-details-thumb-flex .thumb img {
  width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 4;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 3;
  }
}
.blog-thumb-content .blog-details-para:first-child {
  margin-top: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}

/* Comment area */
.details-comment-content .single-commetns {
  width: 100%;
  margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--heading-color);
  display: block;
  margin-bottom: 15px;
}
.details-comment-content .single-commetns .form--control {
  height: 60px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  outline: none;
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
  font-size: 14px;
  line-height: 22px;
  color: var(--light-color);
  padding: 0 20px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.details-comment-content .single-commetns .form--control:focus {
  -webkit-box-shadow: 0 0 18px rgba(248, 58, 38, 0.1);
  box-shadow: 0 0 18px rgba(248, 58, 38, 0.1);
  border-color: rgba(248, 58, 38, 0.3);
}
.details-comment-content .single-commetns .form--message {
  padding: 20px 20px;
  height: 160px;
}
.details-comment-content button {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  background: var(--main-color-one);
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 5px;
  padding: 15px 35px;
  cursor: pointer;
  margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .details-comment-content button {
    font-size: 16px;
    padding: 10px 30px;
  }
}

.comments-flex-item {
  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;
  gap: 30px;
}
@media only screen and (max-width: 575.98px) {
  .comments-flex-item {
    display: block;
  }
}

.comment-list .comment-list {
  margin-left: 120px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comment-list .comment-list {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .comment-list .comment-list {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .comment-list {
    margin-left: 30px;
  }
}
.comment-list .blog-details-flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0;
  gap: 30px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content {
    gap: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content {
    gap: 10px;
    padding: 30px 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content {
    display: block;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb {
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content .blog-details-thumb {
    width: 80px;
    margin-bottom: 15px;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment-list .blog-details-flex-content .blog-details-content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.comment-list .blog-details-flex-content .blog-details-content .details-review-para {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 10px;
  line-height: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 14px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content .review-date {
  margin-top: 10px;
  display: block;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-one);
}

/* Details Tag area */
.social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .social-share {
    display: block;
  }
}
.social-share .share-tiitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.social-share ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
.social-share ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 18px;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .social-share ul li a {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}

.tag-border {
  border-bottom: 2px solid #DDD;
  padding-bottom: 60px;
}

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .tag-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.tag-list .tag-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.tag-list ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
.tag-list ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 7px 18px;
  background: var(--main-color-one);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .tag-list ul li a {
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .tag-list ul li a {
    padding: 5px 15px;
  }
}
.tag-list ul li a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.tag-list ul li a.bg-color-two {
  background: var(--main-color-two);
}
.tag-list ul li a.bg-color-three {
  background: var(--main-color-three);
}
.tag-list ul li a.bg-color-four {
  background: var(--main-color-four);
}

/* Contact */
.contact-map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-map iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-map iframe {
    height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .contact-map iframe {
    height: 250px;
  }
}

.contact-title {
  font-size: 36px;
  line-height: 43px;
  color: var(--heading-color);
  font-weight: 500;
  font-family: var(--heading-font);
  margin: -5px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 375px) {
  .contact-title {
    font-size: 26px;
    line-height: 30px;
  }
}

.contacts-content {
  padding: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .contacts-content {
    padding: 30px 20px;
  }
}
.contacts-content .single-contact-item .item-title {
  font-size: 24px;
  line-height: 40px;
  color: var(--heading-color);
  font-weight: 500;
  display: block;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 22px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 16px;
  }
}
.contacts-content .single-contact-item .item-para {
  font-size: 20px;
  line-height: 40px;
  color: var(--extra-light-color);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.contacts-content .single-contact-item .item-para:hover {
  color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 18px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 15px;
  }
}

.contact-form {
  padding: 0 50px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-form {
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-form {
    padding: 0;
  }
}

.input-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 480px) {
  .input-flex-item {
    display: block;
  }
}

.single-input .label-title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  line-height: 28px;
  color: var(--heading-color);
}
.single-input .form--control {
  height: 60px;
  border: 1px solid #DDD;
  color: var(--extra-light-color);
  font-size: 16px;
  padding: 15px 20px;
}
.single-input .form--control::-webkit-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::-moz-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control:-ms-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::-ms-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control:focus {
  -webkit-box-shadow: 0 0 5px rgba(248, 58, 38, 0.1);
          box-shadow: 0 0 5px rgba(248, 58, 38, 0.1);
}
.single-input .form--control.textarea-form {
  padding: 15px 20px;
  height: 165px;
}

/* Cart  */
.table-list-content.style-02 {
  max-width: 1230px;
  margin: 0 auto;
}
.table-list-content .custom--table thead.head-border {
  border-bottom: 1px solid #DDD;
}
.table-list-content .custom--table thead tr th {
  padding: 0 0 20px 0;
}
.table-list-content .custom--table thead tr th:nth-child(1) {
  text-align: left;
}
.table-list-content .custom--table tbody tr {
  border-bottom: 1px solid #DDD;
  position: relative;
  z-index: 1;
}
.table-list-content .custom--table tbody tr td .close-table-cart {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.table-list-content .custom--table tbody tr td .close-table-cart:hover {
  color: var(--main-color-one);
  -webkit-transform: translateY(-50%) scale(1.3);
          transform: translateY(-50%) scale(1.3);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .close-table-cart {
    top: 10px;
    right: auto;
    left: 10px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background: var(--main-color-one);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 35px;
    width: 35px;
  }
  .table-list-content .custom--table tbody tr td .close-table-cart:hover {
    -webkit-transform: translateY(0) scale(1.3);
            transform: translateY(0) scale(1.3);
    background: #fff;
    color: var(--main-color-one);
  }
}
.table-list-content .custom--table tbody tr td .product-name-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    display: block;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .thumbs {
  height: 170px;
  width: 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .thumbs {
    margin-left: auto;
    height: 120px;
    width: 120px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
  margin-left: 40px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 0px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents .name-title {
    margin-top: 10px;
  }
}
.table-list-content .custom--table tbody tr td.color-one {
  color: var(--main-color-one);
}
.table-list-content .custom--table tbody tr td.color-two {
  color: var(--main-color-two);
}
.table-list-content .custom--table tbody tr td.color-three {
  color: var(--main-color-three);
}
.table-list-content .custom--table tbody tr td.color-four {
  color: var(--main-color-four);
}
.table-list-content .custom--table tbody tr td .product-quantity {
  position: relative;
  z-index: 2;
  width: 130px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-quantity {
    margin: 0;
    margin-left: auto;
  }
}
.table-list-content .custom--table tbody tr td .product-quantity .substract,
.table-list-content .custom--table tbody tr td .product-quantity .plus {
  padding: 0 5px;
}

.table-update-btn .btn-table {
  font-size: 18px;
  padding: 10px 30px;
  color: var(--light-color);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
  .table-update-btn .btn-table {
    padding: 8px 18px;
  }
}
@media only screen and (max-width: 375px) {
  .table-update-btn .btn-table {
    font-size: 16px;
  }
}
.table-update-btn .btn-table.btn-border-1 {
  border: 1px solid #999;
}
.table-update-btn .btn-table:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.coupon-wrapper {
  padding: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .coupon-wrapper {
    padding: 35px 35px 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .coupon-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .coupon-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .coupon-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .coupon-wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .coupon-wrapper {
    padding: 20px 10px;
  }
}

.coupon-border {
  border-top: 1px solid #DDD;
}

.coupon-form .single-input .form--control {
  background: none;
}
.flex-coupon {
  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;
}
.coupon-flex-list .list {
  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: 15px 0;
  color: var(--light-color);
  font-size: 18px;
}

/* Error Area */
.single-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 65px;
  margin: -9px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-title {
    font-size: 35px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-title {
    font-size: 30px;
    line-height: 32px;
  }
}

.error-thumb img {
  margin: 0 auto;
}

/* Order Tracking */
.tracking-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

/* Sign In Sign Up */
.signin-wrappers {
  max-width: 450px;
  margin: 0 auto;
}
.signin-wrappers.style-02 {
  max-width: 550px;
}

.single-input {
  width: 100%;
}

.single-checbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.or-contents {
  text-align: center;
  position: relative;
  z-index: 2;
}
.or-contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #DDD;
  width: 100%;
  height: 1px;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.or-contents .or-para {
  background: #fff;
  padding: 10px 30px;
  color: var(--light-color);
}

.signin-others .single-other-signin:not(:last-child) {
  margin-bottom: 20px;
}
.signin-others .single-other-signin .btn-others {
  padding: 13px 10px;
  display: inline-block;
  border: 1px solid #DDD;
  text-align: center;
}
/* Discount Popup Area */
.discount-popup-wrapper {
  max-width: 900px;
  margin: 200px auto;
  text-align: center;
  padding: 80px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-wrapper {
    max-width: 500px;
    padding: 50px 10px;
    margin: 100px auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .discount-popup-wrapper {
    max-width: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .discount-popup-wrapper {
    max-width: 350px;
  }
}
@media only screen and (max-width: 480px) {
  .discount-popup-wrapper {
    max-width: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .discount-popup-wrapper {
    max-width: 280px;
  }
}
.discount-popup-wrapper .close-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 99;
  cursor: pointer;
  font-size: 24px;
  color: var(--light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-wrapper .close-icon {
    top: 10px;
    right: 15px;
  }
}

.discount-popup-contents .popup-title {
  font-size: 60px;
  line-height: 80px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .discount-popup-contents .popup-title {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .discount-popup-contents .popup-title {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .discount-popup-contents .popup-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .discount-popup-contents .popup-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .discount-popup-contents .popup-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.discount-popup-contents .popup-para {
  font-size: 18px;
  line-height: 30px;
  max-width: 460px;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-para {
    font-size: 16px;
    line-height: 28px;
  }
}
.discount-popup-contents .popup-form {
  max-width: 500px;
  margin: 50px auto 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-form {
    margin: 30px auto 0;
  }
}
.discount-popup-contents .popup-form .single-input {
  position: relative;
  z-index: 1;
}
.discount-popup-contents .popup-form .single-input .form--control {
  border: 0;
  outline: none;
  background: #fff;
  padding: 0 140px 0 20px;
}
@media only screen and (max-width: 375px) {
  .discount-popup-contents .popup-form .single-input .form--control {
    height: 50px;
  }
}
.discount-popup-contents .popup-form .single-input button {
  background: var(--main-color-one);
  color: #fff;
  border: 0;
  outline: none;
  padding: 10px 30px;
  position: absolute;
  right: 0;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  .discount-popup-contents .popup-form .single-input button {
    font-size: 15px;
    padding: 8px 20px;
  }
}
.discount-popup-contents .popup-form .checkbox-inlines {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-form .checkbox-inlines {
    margin-top: 30px;
  }
}

.discount-overlays {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
}

.popup-modal {
  position: relative;
  z-index: 9;
}

.shop-detail-cart-content {
  max-width: 1172px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.6);
          transform: translateY(-50%) scale(0.6);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.shop-detail-cart-content.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.shop-detail-cart-content .shop-details-cart-images {
  -webkit-box-flex: 590px;
      -ms-flex: 590px;
          flex: 590px;
  max-width: 590px;
  height: 750px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-cart-images {
    max-width: 590px;
    height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-images {
    max-width: 100%;
    height: 500px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-detail-cart-content .shop-details-cart-images {
    height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-detail-cart-content .shop-details-cart-images {
    height: 300px;
  }
}
.shop-detail-cart-content .shop-details-thumb-wrapper {
  min-height: 750px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 500px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 300px;
  }
}
.shop-detail-cart-content .shop-details-cart-contents {
  overflow-y: auto;
  max-height: 700px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    max-height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    padding: 0 30px;
  }
}
.shop-detail-cart-content .single-shop-details-wrapper {
  max-width: 100%;
  max-height: 700px;
  overflow-y: auto;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper {
    margin-top: 20px;
  }
}
.shop-detail-cart-content .single-shop-details-wrapper .close-icon {
  font-size: 24px;
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  z-index: 999;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper .close-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--main-color-one);
    color: #fff;
    right: 20px;
    top: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper .close-icon {
    height: 40px;
    width: 40px;
    top: 10px;
    right: 10px;
  }
}
.shop-details-popup-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-popup-flex {
    display: block;
    height: 100vh;
    overflow-y: scroll;
  }
}

/* Checkout */
.checkout-title i {
  color: var(--main-color-one);
}

.click-open-form:hover {
  color: var(--main-color-one);
  font-weight: 500;
}

.checkout-form-open {
  max-width: 500px;
  background: #fff;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}
.checkout-form-open.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
}

.checkout-signup-form-wrapper {
  max-width: 700px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.checkout-signup-form-wrapper.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
  background: #fff;
}

.checkout-address-form-wrapper {
  max-width: 700px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.checkout-address-form-wrapper.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
  background: #fff;
}

.create-accounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  color: var(--heading-color) !important;
}
.create-accounts:hover {
  color: var(--heading-color);
}
.create-accounts::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  width: 20px;
  border: 1px solid #DDD;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.create-accounts.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background: var(--main-color-one);
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  border-color: var(--main-color-one);
}

.checkout-form .input-flex-item .single-input .form--message {
  height: 120px;
}
.checkout-form .checkbox-inlines .checkbox-label {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 500;
}

.checkout-order-summery {
  padding: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .checkout-order-summery {
    padding: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .checkout-order-summery {
    padding: 20px 10px;
  }
}

.checkout-flex-list .list {
  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: 15px 0;
  color: var(--light-color);
  font-size: 18px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .checkout-flex-list .list {
    font-size: 16px;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 375px) {
  .checkout-flex-list .list {
    font-size: 15px;
    padding: 10px 0;
  }
}
.checkout-flex-list .list span.product-qnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.checkout-flex-list .list span .product-cross {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.checkout-flex-list .list span .product-cross::after {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: -20px;
}
.checkout-flex-list .list .input-values {
  width: 40px;
  background: none;
  border: none;
  outline: none;
}

/* Compare Area */
.single-compare .compare-contents .compare-review-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5px;
}
.single-compare .compare-contents .compare-review-list .list {
  margin: 2px;
  font-size: 20px;
}
.single-compare .compare-contents .common-price-title-two {
  margin-top: 15px;
}
@media only screen and (max-width: 480px) {
  .single-compare .compare-contents .compare-content-list {
    margin-top: 20px;
  }
}
.single-compare .compare-contents .compare-content-list .list {
  border-bottom: 1px solid #DDD;
  padding: 20px 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-compare .compare-contents .compare-content-list .list {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-compare .compare-contents .compare-content-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-compare .compare-contents .compare-content-list .list {
    font-size: 15px;
    padding: 10px 0;
  }
}
.single-compare .compare-contents .compare-content-list .list .common-para {
  color: var(--light-color);
}
.single-compare .compare-contents .btn-remove {
  border-bottom: 2px solid var(--light-color);
  color: var(--light-color);
  padding-bottom: 2px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 575.98px) {
  .single-compare .compare-contents .btn-remove {
    font-size: 16px;
  }
}

/* Seller Badge Profile  */
.profile-single-badge .profile-badge-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 575.98px) {
  .profile-single-badge .profile-badge-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.profile-single-badge .profile-badge-flex .author-thumb {
  margin-right: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    margin-right: 20px;
    height: 150px;
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    height: 120px;
    width: 120px;
  }
}
@media only screen and (max-width: 375px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    height: 100px;
    width: 100px;
  }
}
.profile-single-badge .profile-badge-flex .author-thumb img {
  border-radius: 50%;
}
@media only screen and (max-width: 575.98px) {
  .profile-single-badge .profile-badge-flex .author-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.profile-single-badge .profile-badge-flex .profile-badge-contetns .profiles-review .icon {
  color: var(--main-color-one);
}
.profile-single-badge .profile-badge-flex .profile-badge-contetns .profiles-review .reviews {
  color: var(--light-color);
}

@media only screen and (max-width: 575.98px) {
  .badge-profile-list {
    margin-top: 30px;
  }
}
.badge-profile-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 575.98px) {
  .badge-profile-list .lists {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.badge-profile-list .lists:not(:last-child) {
  margin-bottom: 25px;
}
.badge-profile-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .badge-profile-list .lists .list-span {
    font-size: 14px;
  }
}
.badge-profile-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .badge-profile-list .lists .list-strong {
    font-size: 14px;
  }
}

.order-completed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .order-completed {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.order-completed i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 41px;
  width: 41px;
  background: #30BB6F;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
}

/* Seller Profile area */
.dashboard-address-details {
  width: 100%;
}
.dashboard-address-details .details-list {
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (max-width: 575.98px) {
  .dashboard-address-details .details-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.dashboard-address-details .details-list.column-count-one {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
.dashboard-address-details .details-list.column-count-one .lists {
  padding-top: 25px;
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  color: var(--heading-color);
  max-width: 680px;
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list.column-count-one .lists .list-strong {
    font-size: 15px;
    line-height: 30px;
  }
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong b {
  display: block;
  font-weight: 400;
  padding-top: 30px;
}
.dashboard-address-details .details-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.dashboard-address-details .details-list .lists:not(:last-child) {
  margin-bottom: 25px;
}
.dashboard-address-details .details-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
  min-width: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-address-details .details-list .lists .list-span {
    min-width: 120px;
  }
}
@media only screen and (max-width: 767.98px) {
  .dashboard-address-details .details-list .lists .list-span {
    min-width: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list .lists .list-span {
    font-size: 14px;
  }
}
.dashboard-address-details .details-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list .lists .list-strong {
    font-size: 14px;
  }
}

.seller-dashboard-list {
  padding: 0;
}
.seller-dashboard-list .list a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 17px 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .seller-dashboard-list .list a {
    font-size: 15px;
    gap: 10px;
    padding: 15px 10px;
    border-radius: 5px;
  }
}
.seller-dashboard-list .list:not(:last-child) a {
  margin-bottom: 10px;
}
.seller-dashboard-list .list.active a {
  background: var(--main-color-one);
  font-weight: 500;
  color: #fff;
}
.seller-dashboard-list .list:hover a {
  background: var(--main-color-one);
  font-weight: 500;
  color: #fff;
}

.seller-profile-details-wrapper .seller-profile-edit-flex {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.title-seller {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .title-seller {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .title-seller {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .title-seller {
    font-size: 22px;
  }
}

/* Seller Edit Profile  */
.dashboard-profile-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard-profile-flex {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-profile-flex {
    display: block;
  }
}
.dashboard-profile-flex .thumbs {
  height: 200px;
  min-width: 200px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard-profile-flex .thumbs {
    width: 220px;
    margin-bottom: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-profile-flex .thumbs {
    width: 220px;
    margin-bottom: 30px;
  }
}
.dashboard-profile-flex .thumbs img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.dashboard-profile-flex .thumbs .edit-thumb {
  position: absolute;
  left: 150px;
  bottom: 0px;
  z-index: 9;
}
.dashboard-profile-flex .thumbs .edit-thumb i {
  color: #fff;
  background: var(--main-color-three);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 20px;
}

.single-dashboard-input {
  display: inline-block;
  width: 100%;
}
.single-dashboard-input .single-info-input .info-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.single-dashboard-input .single-info-input .form--control {
  height: 60px;
  padding: 0 20px;
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-webkit-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-moz-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control:-ms-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-ms-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .nice-select {
  height: 60px;
  line-height: 60px;
}

/* Seller Order Status  */
@media only screen and (max-width: 575.98px) {
  .seller-order-status-wrapper .single-seller-status .title {
    text-align: center;
  }
}

.single-seller-status {
  padding: 30px;
  border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-seller-status {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-seller-status {
    padding: 20px 10px;
  }
}
.single-seller-status .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.seller-status-flex-content {
  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;
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content {
    display: block;
  }
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single {
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single:not(:last-child) {
    margin-bottom: 20px;
  }
}
.seller-status-flex-content .status-flex-single .price-title {
  font-size: 35px;
  line-height: 55px;
  font-weight: 700;
  margin: 0;
}
.seller-status-flex-content .status-flex-single .price-title.color-3 {
  color: var(--main-color-three);
}
.seller-status-flex-content .status-flex-single .date-titles {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
.seller-status-flex-content .status-flex-single .checkbox-inlines {
  margin-top: 20px;
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single .checkbox-inlines {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5px;
  }
}
.seller-status-flex-content .status-flex-single .checkbox-inlines .checkbox-label {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
  margin: 0;
  font-weight: 400;
}
.seller-status-flex-content .status-flex-single .order-titles {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.seller-status-flex-content .status-flex-single .reviews {
  display: inline-block;
  color: var(--main-color-one);
  font-size: 20px;
}
.seller-status-flex-content .status-flex-single .seller-status-icons {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.seller-status-flex-content .status-flex-single .seller-status-icons .icon {
  text-align: center;
  padding: 0 5px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #DDD;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.seller-status-flex-content .status-flex-single .seller-status-icons .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.icon.color-1 {
  color: var(--main-color-one);
}
.icon.color-2 {
  color: var(--main-color-two);
}
.icon.color-3 {
  color: var(--main-color-three);
}
.icon.color-4 {
  color: var(--main-color-four);
}

/* Seller Responsive Dashboard Close */
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-close {
    background: #fff;
    position: relative;
    z-index: 1;
    position: absolute;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99;
    width: 200px;
    height: 100vh;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  .dashboard-close.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
.dashboard-close .close-bars {
  position: absolute;
  right: -50px;
  top: 0;
  font-size: 30px;
  color: #fff;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-close .close-bars {
    display: block;
  }
}

.dashboard-icon {
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-icon {
    display: block;
  }
}
.dashboard-icon .sidebar-icon {
  font-size: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  z-index: 95;
  border-radius: 5px;
  color: #fff;
}

/* Oreder Completed  */
.order-completed-wrapper {
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed-wrapper .order-completed-icon {
    height: 150px;
    width: 150px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .order-completed-wrapper .order-completed-icon {
    height: 120px;
    width: 120px;
  }
}
@media only screen and (max-width: 375px) {
  .order-completed-wrapper .order-completed-icon {
    height: 100px;
    width: 100px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed-wrapper .order-complete-title {
    margin-top: 10px;
  }
}

.order-complete-contents {
  padding: 40px 70px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.3);
          box-shadow: 0 0 20px rgba(221, 221, 221, 0.3);
  max-width: 1000px;
  margin: 80px auto 0;
  text-align: left;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-complete-contents {
    padding: 0px 30px 30px;
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 480px) {
  .order-complete-contents {
    padding: 0 20px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .order-complete-contents {
    padding: 0 10px 20px;
  }
}

.single-complete-orders .status-flex-single .details-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}
.single-complete-orders .status-flex-single .details-list .lists:not(:last-child) {
  margin-bottom: 15px;
}
.single-complete-orders .status-flex-single .details-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .single-complete-orders .status-flex-single .details-list .lists .list-span {
    font-size: 14px;
  }
}
.single-complete-orders .status-flex-single .details-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .single-complete-orders .status-flex-single .details-list .lists .list-strong {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.footer-top-border {
  border-bottom: 1px solid #ddd;
}
.footer-top-border.white-color {
  border-color: #1B1C25;
}

.footer-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  position: relative;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.footer-widget .logo-borders {
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
.footer-widget .footer-inner .footer-logo {
  text-align: center;
}
.footer-widget .footer-inner .footer-para {
  font-size: 16px;
  color: var(--light-color);
  line-height: 28px;
}
.footer-widget .footer-inner .footer-link-list {
  padding: 0;
}
.footer-widget .footer-inner .footer-link-list .list {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-link-list .list:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-link-list .list a {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-widget .footer-inner .footer-link-list .list a:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-link-address {
  padding: 0;
}
.footer-widget .footer-inner .footer-link-address .list:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .footer-inner .footer-link-address .list .address {
  font-size: 16px;
  line-height: 26px;
  display: block;
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
  letter-spacing: 1px;
}
.footer-widget .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  padding: 0;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget .footer-inner .footer-social-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .footer-social-list .lists a {
  color: var(--light-color);
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background: #fff;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-list .lists:not(:last-child) a {
  margin-right: 10px;
}
.footer-widget .footer-inner .subscribe-para {
  font-size: 16px;
  color: var(--light-color);
}
.footer-widget .footer-inner .subscribe-form {
  margin-top: 30px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single {
  position: relative;
  max-width: 255px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control {
  width: 100%;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  background: #fff;
  color: var(--light-color);
  border: 1px solid #fff;
  padding: 0 60px 0 20px;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-webkit-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-moz-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:-ms-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-ms-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(248, 58, 38, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(248, 58, 38, 0.1);
  box-shadow: 0 0 20px rgba(248, 58, 38, 0.1);
}
.footer-widget .footer-inner .subscribe-form .widget-form-single button {
  outline: none;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: 50px;
  background: var(--main-color-one);
  font-size: 20px;
  color: #fff;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
}
.footer-widget .footer-inner .payment-list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-widget .footer-inner .payment-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .payment-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-widget .footer-inner .payment-list .list:not(:last-child) {
  margin-right: 15px;
}
.footer-widget .footer-inner .privacy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .privacy-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .privacy-list li {
  position: relative;
  z-index: 2;
}
.footer-widget .footer-inner .privacy-list li:hover a {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .privacy-list li:not(:last-child) {
  padding-right: 20px;
}
.footer-widget .footer-inner .privacy-list li:not(:first-child) {
  padding-left: 20px;
}
.footer-widget .footer-inner .privacy-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  height: 20px;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--extra-light-color);
}
.footer-widget .footer-inner .privacy-list li a {
  color: var(--light-color);
}
.footer-widget .footer-inner .footer-social-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  padding: 0;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget .footer-inner .footer-social-two {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .footer-social-two .lists a {
  color: var(--light-color);
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-two .lists:not(:last-child) a {
  margin-right: 10px;
}
.footer-widget .footer-inner .footer-call {
  display: block;
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-call:hover {
  color: var(--main-color-one);
}

.copyright-area {
  padding: 25px 0;
}
.copyright-area.copyright-border {
  border-top: 1px solid #dddddd;
}
.copyright-area.copyright-border.white-color {
  border-color: #1B1C25;
}
.copyright-area.white-color .copyright-contents {
  color: #fff;
}
.copyright-area .copyright-contents {
  font-size: 16px;
  color: var(--light-color);
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .copyright-area .copyright-contents {
    text-align: center;
    margin-top: 10px;
  }
}

.footer-widget.white-color .widget-title {
  color: #fff;
}
.footer-widget.white-color .footer-inner .subscribe-para {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-list .list a {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-list .list a:hover {
  color: var(--main-color-one);
}
.footer-widget.white-color .footer-inner .footer-link-address .list .address {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
}
.footer-widget.white-color .footer-inner .footer-social-list .lists a {
  background: #1B1C25;
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget.white-color .footer-inner .footer-social-list .lists a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.footer-widget.white-color .footer-inner .subscribe-form .widget-form-single .form--control {
  -webkit-box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
          box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
}
.footer-widget.white-color .footer-inner .payment-list .list {
  background: #fff;
}
.footer-widget.color-two .footer-inner .footer-link-list .list::before {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 186, 0, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 186, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 186, 0, 0.1);
}
.footer-widget.color-two .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .privacy-list li:hover a {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-call:hover {
  color: var(--main-color-two);
}
.footer-widget.color-three .footer-inner .footer-link-list .list::before {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 106, 58, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 106, 58, 0.1);
  box-shadow: 0 0 20px rgba(255, 106, 58, 0.1);
}
.footer-widget.color-three .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .privacy-list li:hover a {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-call:hover {
  color: var(--main-color-three);
}
.footer-widget.color-four .footer-inner .footer-link-list .list::before {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 105, 92, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 105, 92, 0.1);
  box-shadow: 0 0 20px rgba(255, 105, 92, 0.1);
}
.footer-widget.color-four .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .privacy-list li:hover a {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-call:hover {
  color: var(--main-color-four);
}

.footer-middle-border.black-border div[class*=col]:not(:last-child) .footer-widget::after {
  background: #1B1C25;
}
.footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 1px;
  right: 25%;
  top: 0;
  background: rgba(221, 221, 221, 0.3);
  z-index: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 20%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 15%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 5%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .footer-inner-all {
    border-radius: 30px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .footer-container-style .footer-inner-all {
    border-radius: 20px !important;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .footer-inner-all {
    border-radius: 10px !important;
  }
}
.footer-container-style .footer-middle {
  margin: 0 30px 0 120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-container-style .footer-middle {
    margin: 0 10px 0 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .footer-middle {
    margin: 0 10px 0 20px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .footer-middle {
    margin: 0 10px;
  }
}
.footer-container-style .copyright-area {
  padding: 25px 120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .copyright-area {
    padding: 20px 10px;
  }
}

.footer-list-bars .footer-inner .footer-link-list .list {
  padding-left: 40px;
}
.footer-list-bars .footer-inner .footer-link-list .list::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--main-color-one);
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-list-bars .footer-inner .footer-link-list .list:hover {
  padding-left: 30px;
}
.footer-list-bars .footer-inner .footer-link-list .list:hover:before {
  width: 20px;
}

.black-themes.footer-bg {
  background: #22232F !important;
}
.black-themes .footer-top-border {
  border-color: #1B1C25 !important;
}
.black-themes .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
  background: #1B1C25;
}
.black-themes .footer-widget .widget-title {
  color: #fff;
}
.black-themes .footer-widget .footer-inner .footer-social-list .lists a {
  background: var(--heading-color);
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .footer-social-list .lists a:hover {
  color: var(--heading-color);
}
.black-themes .footer-widget .footer-inner .footer-link-list .list a {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .footer-link-address .list .address {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .payment-list li {
  background: #fff;
}
.black-themes .footer-widget .footer-inner .subscribe-para {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .subscribe-form .widget-form-single .form--control {
  -webkit-box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
          box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
}
.black-themes .footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  -webkit-box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
          box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}
.black-themes .copyright-border {
  border-color: #1B1C25 !important;
}
.black-themes .copyright-contents {
  color: rgba(255, 255, 255, 0.7);
}

/*-------------------------
    Section Title
-------------------------*/
.section-title {
  text-align: center;
  /*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;*/
  /*-ms-flex-wrap: wrap;*/
  /*    flex-wrap: wrap;*/
    padding-bottom: 10px;
  gap: 20px;
}
.section-title.text-left {
  text-align: left;
}
.section-title.white-color {
  color: #fff;
}
.section-title.white-color .title {
  color: #fff;
}
.section-title.section-border-bottom {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-border-bottom {
    padding-bottom: 20px;
  }
}
.section-title.section-title-two .title {
  font-family: var(--jost-font);
  font-size: 40px;
  line-height: 65px;
  text-transform: uppercase;
  margin: -10px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title.section-title-two .title {
    font-size: 27px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title.section-title-two .title {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-title.section-title-two .see-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .see-all {
    gap: 10px;
  }
}
.section-title.section-title-two .see-all.arrow-two::after {
  content: "";
}
.section-title.section-title-two .see-all.color-two:hover {
  color: var(--main-color-two);
}
.section-title.section-title-two .see-all.color-two::after {
  background: var(--main-color-two);
}
.section-title.section-title-two .see-all.color-three:hover {
  color: var(--main-color-three);
}
.section-title.section-title-two .see-all.color-three::after {
  background: var(--main-color-three);
}
.section-title.section-title-two .see-all.color-four:hover {
  color: var(--main-color-four);
}
.section-title.section-title-two .see-all.color-four::after {
  background: var(--main-color-four);
}
.section-title.section-title-two .see-all::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background: var(--main-color-one);
  color: #fff;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .see-all::after {
    height: 40px;
    width: 40px;
  }
}
.section-title .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 43px;
  color: var(--heading-color);
  margin: -7px 0 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title .title {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title .title {
    font-size: 22px;
    line-height: 28px;
  }
}
.section-title .title .title-image {
  position: relative;
  z-index: 2;
  padding: 16px 0;
}
.section-title .title .title-image img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
  text-align: center;
  width: 100%;
}

.see-all {
  cursor: pointer;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 100px;
  text-align: right;
}
.see-all:hover {
  color: var(--main-color-one);
}
.see-all::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: var(--main-color-one);
}
.see-all.arrow-two::after {
  content: "";
}
.see-all.color-two:hover {
  color: var(--main-color-two);
}
.see-all.color-two::after {
  color: var(--main-color-two);
}
.see-all.color-three:hover {
  color: var(--main-color-three);
}
.see-all.color-three::after {
  color: var(--main-color-three);
}
.see-all.color-four:hover {
  color: var(--main-color-four);
}
.see-all.color-four::after {
  color: var(--main-color-four);
}
@media only screen and (max-width: 575.98px) {
  .see-all {
    font-size: 19px;
  }
}
@media only screen and (max-width: 375px) {
  .see-all {
    font-size: 17px;
  }
}

.section-title-three {
  text-align: center;
}
.section-title-three .title {
  font-size: 55px;
  line-height: 65px;
  font-weight: 400;
  font-family: var(--playfair-font);
  display: inline-block;
  margin: -11px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title-three .title {
    font-size: 45px;
    line-height: 55px;
    margin: -9px 0 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title-three .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title-three .title {
    font-size: 32px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title-three .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-title-three .title .line-round {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.section-title-three .title .title-right {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.section-title-three .title .title-right img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.section-title-four .title {
  font-family: var(--montserrat-font);
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  margin: -12px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title-four .title {
    font-size: 36px;
    line-height: 45px;
    margin: -9px 0 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title-four .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title-four .title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title-four .title {
    font-size: 26px;
    line-height: 30px;
  }
}
.section-title-four .title .center-title-img {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -20px;
  margin: 0 auto;
}

.black-themes .section-title .title {
  color: #fff;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrapper {
  display: block;
}
.btn-wrapper .cmn-btn {
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
  padding: 10px 35px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 575.98px) {
  .btn-wrapper .cmn-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.btn-bg-1 {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-2 {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.btn-bg-3 {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-4 {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn.shop-color-2 {
  background: #30BB6F;
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-white {
  background: #fff;
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.btn-bg-white:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-white.hover-bg-two:hover {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.extra-width {
  width: 220px;
}
.btn-wrapper .cmn-btn.btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-steam {
  background: #DDD;
}
.btn-wrapper .cmn-btn.btn-border {
  border: 1px solid #ddd;
}
.btn-wrapper .cmn-btn.btn-outline-steam {
  border: 3px solid #DDD;
}
.btn-wrapper .cmn-btn.btn-outline-one {
  padding: 7px 35px;
  border: 3px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-one.color-one {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-one:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-two {
  padding: 7px 35px;
  border: 3px solid var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-outline-two.color-two {
  color: var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-outline-two:hover {
  background: var(--main-color-two);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-three {
  padding: 7px 35px;
  border: 3px solid var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-outline-three.color-three {
  color: var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-outline-three:hover {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-four {
  padding: 7px 35px;
  border: 3px solid var(--main-color-four);
}
.btn-wrapper .cmn-btn.btn-outline-four.color-four {
  color: var(--main-color-four);
}
.btn-wrapper .cmn-btn.btn-outline-four:hover {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn.completed {
  background: rgba(29, 191, 115, 0.1);
  color: #1DBF73;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.completed {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.canceled {
  background: rgba(255, 23, 71, 0.1);
  color: #FF1747;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.canceled {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.pending {
  background: rgba(255, 179, 7, 0.1);
  color: #FFB307;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.pending {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.cart-btn {
  font-size: 20px;
  font-weight: 500;
  color: var(--extra-light-color);
  padding: 10px 70px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 35px;
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 35px;
    font-size: 18px;
  }
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one {
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one:hover {
  background: 0;
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one:hover::after {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-wrapper .cmn-btn.cart-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn:hover::after {
  color: #fff;
}

.btn-see-more {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
}
.btn-see-more:hover {
  color: var(--main-color-one);
}
.btn-see-more::after {
  content: "";
  font-size: 20px;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-see-more {
    font-size: 16px;
  }
  .btn-see-more::after {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .btn-see-more {
    font-size: 15px;
  }
  .btn-see-more::after {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-see-more {
    font-size: 14px;
  }
  .btn-see-more::after {
    font-size: 15px;
  }
}

button.btn-submit {
  border: 0;
  outline: none;
  background: inherit;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  background: var(--main-color-one);
  color: #fff;
  padding: 17px 38px;
  margin-top: 30px;
}
button.btn-submit.bg-color-two {
  background: var(--main-color-two);
}
button.btn-submit.bg-color-three {
  background: var(--main-color-three);
}
button.btn-submit.bg-color-four {
  background: var(--main-color-four);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  button.btn-submit {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  button.btn-submit {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 480px) {
  button.btn-submit {
    font-size: 15px;
    padding: 12px 25px;
  }
}
@media only screen and (max-width: 375px) {
  button.btn-submit {
    font-size: 14px;
    padding: 10px 18px;
  }
}

.btn-coupon {
  outline: none;
  border: 1px solid #DDD;
  background: #DDD;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
}
.btn-coupon.btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
}

.btn-buy {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-buy {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-buy {
    margin-top: 10px;
  }
}
.btn-buy.icon::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-color-one {
  color: var(--main-color-one);
}
.btn-color-one:hover {
  color: var(--main-color-one);
}

.btn-decoration {
  text-decoration: underline;
}
.btn-decoration.icon {
  text-decoration: none;
}
.btn-decoration.icon::before {
  text-decoration: none;
}

.comingsoon-btn {
  margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn {
    margin-top: 20px;
  }
}
.comingsoon-btn .comingsoon-order {
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comingsoon-btn .comingsoon-order.brows-category {
  color: var(--heading-color);
}
.comingsoon-btn .comingsoon-order.brows-category::before {
  background: var(--main-color-one);
  color: #fff;
}
.comingsoon-btn .comingsoon-order.brows-category:hover::before {
  background: #fff;
  color: var(--main-color-one);
}
.comingsoon-btn .comingsoon-order.color-two-btn::before {
  background: var(--main-color-three);
  color: #fff;
}
.comingsoon-btn .comingsoon-order.color-two-btn:hover::before {
  background: #fff;
  color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 14px;
  }
}
.comingsoon-btn .comingsoon-order::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  color: var(--heading-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn .comingsoon-order::before {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-btn .comingsoon-order::before {
    height: 30px;
    width: 30px;
    font-size: 20px;
  }
}
.comingsoon-btn .comingsoon-order:hover {
  color: var(--main-color-one);
}
.comingsoon-btn .comingsoon-order:hover::before {
  background: var(--main-color-one);
  color: #fff;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}

@media only screen and (max-width: 575px) {
    .back-to-top {
        right: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px
    }
}
.back-to-top.bg-color-two {
  background: var(--main-color-two);
}
.back-to-top.bg-color-three {
  background: var(--main-color-three);
}
.back-to-top.bg-color-four {
  background: var(--main-color-four);
}

/* Nice Select Style */
.nice-select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  font-weight: 400;
  color: var(--extra-light-color);
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nice-select:focus {
  border: 1px solid #ddd;
}
.nice-select .nice-select-search-box {
  height: 100%;
}
.nice-select .nice-select-search-box .nice-select-search {
  vertical-align: top;
}
.nice-select:after {
  border-bottom: 2px solid var(--extra-light-color);
  border-right: 2px solid var(--extra-light-color);
  height: 8px;
  margin-top: -5px;
  right: 20px;
  width: 8px;
}
@media only screen and (max-width: 375px) {
  .nice-select:after {
    right: 10px;
  }
}
.nice-select.open {
  border: 1px solid #ddd;
}
.nice-select .list {
  width: 100%;
}

/* Isootope List */
.isootope-list {
  position: absolute;
  top: -75px;
  right: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-list {
    top: -60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .isootope-list {
    position: unset;
  }
}
.isootope-list.list-two {
  top: -60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-list.list-two {
    position: initial;
    margin-top: 35px;
  }
}

.isootope-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .isootope-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 35px;
  }
}
.isootope-button.style-02.color-one .list::before {
  background: var(--main-color-one);
}
.isootope-button.style-02.color-one .list.active {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.isootope-button.style-02.color-two .list::before {
  background: var(--main-color-two);
}
.isootope-button.style-02.color-two .list.active {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.isootope-button.style-02.color-four .list::before {
  background: var(--main-color-four);
}
.isootope-button.style-02.color-four .list.active {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}
.isootope-button.style-02 .list {
  font-family: var(--roboto-font);
  padding: 8px 35px;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .isootope-button.style-02 .list {
    padding: 8px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-02 .list {
    padding: 7px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-02 .list {
    font-size: 15px;
    padding: 6px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-02 .list {
    font-size: 15px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button.style-02 .list {
    font-size: 14px;
    padding: 3px 18px;
  }
}
.isootope-button.style-02 .list:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
.isootope-button.style-02 .list::before {
  background: var(--main-color-three);
  height: 100%;
  z-index: -1;
}
.isootope-button.style-02 .list.active {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.isootope-button.style-02 .list:hover {
  color: #fff;
}
.isootope-button.colors-heading .list::before {
  background: var(--heading-color);
}
.isootope-button.colors-heading .list.active {
  color: var(--heading-color);
}
.isootope-button.colors-heading .list:hover {
  color: var(--heading-color);
}
.isootope-button.style-03 .list {
  font-family: var(--roboto-font);
  padding: 8px 35px;
  border: 1px solid #DDD;
  background: #DDD;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .isootope-button.style-03 .list {
    padding: 8px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-03 .list {
    padding: 7px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-03 .list {
    font-size: 15px;
    padding: 6px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-03 .list {
    font-size: 15px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button.style-03 .list {
    font-size: 14px;
    padding: 3px 18px;
  }
}
.isootope-button.style-03 .list:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-03 .list:not(:last-child) {
    margin-right: 10px;
  }
}
.isootope-button.style-03 .list::before {
  background: var(--main-color-two);
  height: 100%;
  z-index: -1;
}
.isootope-button.style-03 .list.active {
  background: var(--main-color-two);
  color: var(--heading-color);
  border-color: var(--main-color-two);
}
.isootope-button.style-03 .list:hover {
  color: var(--heading-color);
  background: var(--main-color-two);
}
.isootope-button .list {
  font-size: 18px;
  font-family: var(--rubik-font);
  cursor: pointer;
  line-height: 30px;
  margin-top: 5px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .isootope-button .list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button .list {
    font-size: 15px;
  }
}
.isootope-button .list::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--main-color-one);
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.isootope-button .list.active {
  color: var(--main-color-one);
}
.isootope-button .list.active::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.isootope-button .list:not(:last-child) {
  margin-right: 60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 15px;
  }
}
.isootope-button .list:hover {
  color: var(--main-color-one);
}
.isootope-button .list:hover::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.black-themes .isootope-button.style-03 .list {
  border: 1px solid #22232F;
  background: #22232F;
  color: #fff;
}
.black-themes .isootope-button.style-03 .list.active {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.black-themes .isootope-button.style-03 .list:hover {
  background: var(--main-color-two);
  color: var(--heading-color);
}

/* Tab Style */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tabs li {
  font-size: 18px;
  font-weight: 500;
  background: inherit;
  cursor: pointer;
}

/* Countdown Css */
.countdown-para {
  line-height: 30px;
}

.global-timer .syotimer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  gap: 15px;
}
@media only screen and (max-width: 480px) {
  .global-timer .syotimer__body {
    gap: 10px;
  }
}
.global-timer .syotimer__body .syotimer-cell {
  margin: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0 0 10px #f2f3f5;
          box-shadow: 0 0 10px #f2f3f5;
  padding: 10px 20px;
  border-radius: 5px;
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell {
    padding: 5px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
  font-size: 36px;
  color: var(--main-color-one);
  font-weight: 500;
  line-height: 43px;
  font-family: var(--heading-font);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 19px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 13px;
  }
}
.global-timer.simple-timer-two {
  margin-top: 35px;
}
.global-timer.simple-timer-two.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.simple-timer-two.color-two .syotimer__body .syotimer-cell {
  background: var(--main-color-two);
}
.global-timer.simple-timer-two.color-three .syotimer__body .syotimer-cell {
  background: var(--main-color-three);
}
.global-timer.simple-timer-two.color-four .syotimer__body .syotimer-cell {
  background: var(--main-color-four);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two {
    margin-top: 20px;
  }
}
.global-timer.simple-timer-two .syotimer__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell {
  background: var(--main-color-one);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 7px 13px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: #fff;
  font-family: var(--jost-font);
  font-weight: 600;
  font-size: 43px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
    line-height: 26px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: #fff;
  line-height: 21px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 14px;
  }
}
.global-timer.simple-timer-campaign {
  position: absolute;
  bottom: 30px;
  z-index: 9;
  left: 0;
  right: 0;
  text-align: center;
}
.global-timer.simple-timer-campaign.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 10px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
  background: #fff;
  color: var(--light-color);
  padding: 5px 15px;
  border-radius: 10px;
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 12px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-one);
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 20px;
    line-height: 26px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--light-color);
  line-height: 24px;
  font-size: 14px;
}
.global-timer.discount-countdown.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.discount-countdown .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 20px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell {
  background: #fff;
  color: var(--main-color-one);
  padding: 5px 15px;
  border-radius: 10px;
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 15px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 5px 12px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-one);
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 20px;
    line-height: 26px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-one);
  line-height: 20px;
  font-size: 14px;
}

/* Price Updated Through */
.price-update-through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.price-update-through .flash-prices {
  color: var(--heading-color);
}
.price-update-through .flash-prices.color-one {
  color: var(--main-color-one);
}
.price-update-through .flash-prices.color-two {
  color: var(--main-color-two);
}
.price-update-through .flash-prices.color-three {
  color: var(--main-color-three);
}
.price-update-through .flash-prices.color-four {
  color: var(--main-color-four);
}
.price-update-through .flash-prices.hover-color-one:hover {
  color: var(--main-color-one);
}
.price-update-through .flash-prices.hover-color-two:hover {
  color: var(--main-color-two);
}
.price-update-through .flash-prices.hover-color-three:hover {
  color: var(--main-color-three);
}
.price-update-through .flash-prices.hover-color-four:hover {
  color: var(--main-color-four);
}
.price-update-through .flash-old-prices {
  text-decoration: line-through;
}

/* Common Review List */
.common-review-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-review-list li {
  font-size: 18px;
  color: var(--main-color-one);
  margin: 1px;
}
.common-review-list li .review-count {
  color: var(--extra-light-color);
  margin-left: 5px;
}

/* Search Popup */
.search-open {
  font-size: 24px;
  cursor: pointer;
  margin-left: 0px;
  position: relative;
  z-index: 9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-open.hover-color-three:hover {
  color: var(--main-color-two);
}

.searchbar-area {
  position: relative;
  z-index: 9;
}

.search-bar {
  position: absolute;
  top: -60%;
  right: 0;
  left: 0;
  height: auto;
  z-index: 9;
  width: 95%;
  margin: 0 auto;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 9999;
}
.search-bar.active {
  visibility: visible;
  opacity: 1;
  top: 5px;
}
.search-bar.color-style-02 .menu-search-form .search-close {
  color: var(--main-color-two);
  border: 1px solid var(--main-color-two);
}
.search-bar.color-style-02 .menu-search-form .search-close:hover {
  background: var(--main-color-two);
}
.search-bar.color-style-02 .menu-search-form .item-search:focus {
  border-color: rgba(255, 186, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 186, 0, 0.1);
          box-shadow: 0 0 10px rgba(255, 186, 0, 0.1);
}
.search-bar.color-style-02 .menu-search-form button {
  background: var(--main-color-two);
}
.search-bar.color-style-03 .menu-search-form .search-close {
  color: var(--main-color-three);
  border: 1px solid var(--main-color-three);
}
.search-bar.color-style-03 .menu-search-form .search-close:hover {
  background: var(--main-color-three);
}
.search-bar.color-style-03 .menu-search-form .item-search:focus {
  border-color: rgba(255, 106, 58, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 106, 58, 0.1);
          box-shadow: 0 0 10px rgba(255, 106, 58, 0.1);
}
.search-bar.color-style-03 .menu-search-form button {
  background: var(--main-color-three);
}
.search-bar.color-style-04 .menu-search-form .search-close {
  color: var(--main-color-four);
  border: 1px solid var(--main-color-four);
}
.search-bar.color-style-04 .menu-search-form .search-close:hover {
  background: var(--main-color-four);
}
.search-bar.color-style-04 .menu-search-form .item-search:focus {
  border-color: rgba(255, 105, 92, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 105, 92, 0.1);
          box-shadow: 0 0 10px rgba(255, 105, 92, 0.1);
}
.search-bar.color-style-04 .menu-search-form button {
  background: var(--main-color-four);
}
.search-bar .menu-search-form {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px;
}
.search-bar .menu-search-form .search-close {
  position: absolute;
  right: 0px;
  bottom: -50px;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #F2F3F5;
  padding: 2px 10px;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.search-bar .menu-search-form .search-close:hover {
  color: #fff;
  background: var(--main-color-one);
}
.search-bar .menu-search-form .item-search {
  width: 100%;
  height: 80px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  text-transform: capitalize;
  padding: 10px 30px;
  padding-right: 70px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  color: var(--light-color);
}
.search-bar .menu-search-form .item-search:focus {
  border-color: rgba(248, 58, 38, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(248, 58, 38, 0.1);
          box-shadow: 0 0 10px rgba(248, 58, 38, 0.1);
}
.search-bar .menu-search-form .item-search::-webkit-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::-moz-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search:-ms-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::-ms-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form button {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0 30px;
  background: var(--main-color-one);
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

/* .close-toggle-body {
    height: 100%;
    width: 100%;
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 99;
    cursor: zoom-out;
    transition: all .8s;
    &.open {
        background: rgba($black, .01);
        left: 0;
        border-radius: 0;
    }
} */
/* Pagination */
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-pagination {
    margin-top: 30px;
  }
}

.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pagination-list::before {
  content: "";
}
.pagination-list::after {
  content: "";
}
.pagination-list::before, .pagination-list::after {
  cursor: pointer;
  background: none;
  font-size: 16px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  border: 1px solid var(--extra-light-color);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.pagination-list::before:hover, .pagination-list::after:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list::before, .pagination-list::after {
    font-size: 15px;
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .pagination-list::before, .pagination-list::after {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.pagination-list li {
  margin: 5px 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list li {
    margin: 5px 5px;
  }
}
.pagination-list li.active a {
  background: var(--main-color-one);
  color: #fff;
}
.pagination-list li a {
  background: #fff;
  color: var(--extra-light-color);
  font-size: 16px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination-list li a:hover {
  background: var(--main-color-one);
  color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list li a {
    font-size: 15px;
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .pagination-list li a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.checkbox-inlines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.checkbox-inlines .check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 18px;
  min-width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin-top: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox-inlines .check-input::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.6) rotate(90deg);
  transform: scale(1.6) rotate(90deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox-inlines .check-input:checked {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  background: var(--main-color-one);
}
.checkbox-inlines .check-input:checked::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2) rotate(0deg);
  transform: scale(1.2) rotate(0deg);
}
.checkbox-inlines .checkbox-label {
  cursor: pointer;
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
}
@media only screen and (max-width: 575.98px) {
  .checkbox-inlines .checkbox-label {
    font-size: 15px;
  }
}

/* Faq */
.faq-contents .faq-item.open .faq-title {
  background: #FFF8F0;
  border-color: #FFF8F0;
  font-weight: 500;
  color: var(--heading-color);
}
.faq-contents .faq-item.open .faq-title::after {
  content: "";
}
.faq-contents .faq-item.open .faq-panel {
  background: #FFF8F0;
}
.faq-contents .faq-item.active .faq-title {
  color: var(--heading-color);
}
.faq-contents .faq-item.active .faq-panel {
  display: block;
  background: #FFF8F0;
}
.faq-contents .faq-item:not(:first-child) {
  margin-top: 30px;
}
.faq-contents .faq-item .faq-title {
  font-size: 24px;
  color: var(--light-color);
  font-family: var(--heading-font);
  line-height: 24px;
  line-height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 18px;
    line-height: 20px;
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item .faq-title {
    font-size: 16px;
    padding: 15px 10px;
  }
}
.faq-contents .faq-item .faq-title::after {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  color: var(--light-color);
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item .faq-title::after {
    right: 10px;
  }
}
.faq-contents .faq-item .faq-panel {
  display: none;
  padding: 30px 40px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
.faq-contents .faq-item .faq-panel .faq-para {
  font-size: 20px;
  line-height: 40px;
  color: var(--light-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 19px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 17px;
  }
}
@media only screen and (max-width: 575.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
  }
}

/*=========================================================
          [ Table ]
=========================================================*/
.custom--table {
  width: 100%;
  color: inherit;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
}

.custom--table thead {
  font-weight: 700;
  font-size: 18px;
  background: inherit;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.custom--table tbody {
  border-top: 0;
  overflow: hidden;
  border-radius: 10px;
}

.custom--table tbody tr:nth-child(odd) {
  background-color: inherit;
}

.custom--table tbody tr:nth-child(even) {
  background-color: inherit;
}

.custom--table tr th {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
}

.custom--table tr td {
  font-size: 18px;
  color: var(--heading-color);
  padding: 20px 0;
  line-height: 22px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .custom--table tr td {
    padding: 10px 0;
  }
}
.custom--table tr td:last-child {
  padding: 0;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  padding: 8px 20px;
  display: none;
  font-size: 14px;
}

/* @media (max-width: 767.98px) {
    .table-responsive.table-responsive-sm thead {
        display: none;
    }
    .table-responsive.table-responsive-sm [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-sm tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
    .table-responsive [data-label]::before {
        padding: 8px 10px 8px 5px;
    }
} */
@media (max-width: 991px) {
  .table-responsive thead {
    display: none;
  }

  .table-responsive [data-label]::before {
    display: block;
  }

  .table-responsive tr td {
    display: block;
    text-align: right;
    padding-right: 5px;
  }

  .table-responsive [data-label]::before {
    padding: 8px 10px 8px 5px;
  }
}
/* @media (max-width: 1199.98px) {
    .table-responsive.table-responsive-lg thead {
        display: none;
    }
    .table-responsive.table-responsive-lg [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-lg tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive.table-responsive-xl thead {
        display: none;
    }
    .table-responsive.table-responsive-xl [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-xl tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
} */
/* Ui Range Slider */
.price-range-slider {
  padding: 0 10px;
}
.price-range-slider .ui-range-slider.noUi-target {
  position: relative;
  border-radius: 3px;
  height: 3px;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle {
  top: -9px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: var(--main-color-one);
  cursor: default;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--main-color-one);
}
.price-range-slider .ui-range-slider-footer {
  display: table;
  width: 100%;
  padding-top: 20px;
}
.price-range-slider .ui-range-slider-footer .ui-range-values {
  display: inline-block;
  color: var(--light-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-price-title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-min,
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-max {
  display: inline-block;
  font-size: 16px;
}
.noUi-background {
  background: #DDDDDD;
}


/*search css */
.search-open-form {
    position: relative;
}
.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
}
.search-suggestions-inner {
    padding: 20px;
    background: var(--section-bg-3);
}
.search-suggestions-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
}

.product-suggestion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.product-suggestion-list-item {
    width: calc(100% / 6 - 20px);
}

@media screen and (max-width: 1799px) and (min-width: 1400px) {
    .product-suggestion-list-item {
        width: calc(100% / 5 - 19.2px);
    }
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .product-suggestion-list-item {
        width: calc(100% / 4 - 18px);
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .product-suggestion-list-item {
        width: calc(100% / 3 - 16px);
    }
}

@media screen and (max-width: 991px) and (min-width: 576px) {
    .product-suggestion-list-item {
        width: calc(100% / 2 - 12px);
    }
}

@media only screen and (max-width: 575px) {
    .product-suggestion-list-item {
        width: calc(100% / 1 - 0px);
    }
}

.product-suggestion-list-link {
    display: flex;
    /*align-items: center;*/
    gap: 12px;
}

.product-suggestion-list-link .product-image {
    max-width: 40px;
    flex-shrink: 0;
}

.product-suggestion-list-link .product-image img {
    border-radius: 10px;
}

.product-suggestion-list-link .product-info {
    flex-grow: 1;
}

.product-suggestion-list-link .product-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--heading-color);
}

.shop-area {
    overflow: hidden;
}

.shop-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .shop-right {
        gap: 12px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 24px;
    }
}
@media only screen and (max-width: 767.98px) {
    .shop-right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 20px;
    }
}

.shop-nice-select .nice-select {
    font-size: 16px;
    color: var(--light-color);
    border: 1px solid rgba(221, 221, 221, 0.4);
    outline: none;
    height: 48px;
    line-height: 48px;
}
@media only screen and (max-width: 575.98px) {
    .shop-nice-select .nice-select {
        padding: 0 30px 0 0;
        font-size: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .shop-nice-select .nice-select {
        padding: 0 25px 0 10px;
        font-size: 14px;
    }
}
.shop-nice-select .nice-select::after {
    border-bottom: 2px solid var(--light-color);
    border-right: 2px solid var(--light-color);
    right: 10px;
}
.shop-nice-select .nice-select .list {
    min-width: 100% !important;
}

.single-shops {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 20px;
}
.single-shops .shop-flex-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.single-shops .shop-icons {
    font-size: 24px;
    height: 40px;
    width: 40px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.single-shops .shop-icons.active {
    background: #F2F3F5;
}

.single-blog-two:hover .single-blog-two-thumbs img {
    /* IE 9 */
    -webkit-transform: scaleY(1.2) rotate(5deg);
    /* Chrome, Safari, Opera */
    transform: scaleY(1.2) rotate(5deg);
}
.single-blog-two-thumbs {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 300ms;
    transition: 300ms;
}
.single-blog-two-thumbs img {
    -webkit-transition: 300ms;
    transition: 300ms;
}
.single-blog-two-thumbs-date {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    background-color: var(--main-color-two);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 15px;
}
.single-blog-two-thumbs-date a {
    display: block;
    text-align: center;
}
.single-blog-two-thumbs-date .date {
    border-bottom: 1px solid #fff;
    display: block;
}
.single-blog-two-contents-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-blog-two-contents-title {
        font-size: 22px;
        line-height: 28px;
    }
}
.single-blog-two-contents-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.single-blog-two-contents-tags-item {
    font-size: 16px;
    color: var(--extra-light-color);
    position: relative;
}
.single-blog-two-contents-tags-item i {
    color: var(--main-color-two);
}
.single-blog-two-contents-tags-item a:hover {
    color: var(--main-color-two);
}
.single-blog-two-contents-tags-item:not(:last-child) {
    padding-right: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child) {
    padding-left: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child)::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background-color: var(--main-color-two);
    border-radius: 50%;
    top: 50%;
    left: -5px;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.flex-blog-height {
    width: 580px;
    height: 420px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .flex-blog-height {
        width: 400px;
        height: 300px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .flex-blog-height {
        width: 320px;
        height: 280px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .flex-blog-height {
        width: 250px;
        height: 290px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .flex-blog-height {
        width: 250px;
        height: 290px;
    }
}
@media only screen and (max-width: 375px) {
    .flex-blog-height {
        width: 100%;
    }
}

.flex-blog-height-two {
    width: 400px;
    height: 350px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .flex-blog-height-two {
        width: 220px;
        height: 320px;
    }
}
@media only screen and (max-width: 480px) {
    .flex-blog-height-two {
        width: 100%;
    }
}

.single-flex-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog {
        gap: 15px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog {
        gap: 15px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-flex-blog {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: block !important;
    }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog.style-02 {
        gap: 20px;
    }
}
.single-flex-blog.style-02 .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 36px;
}
@media only screen and (max-width: 480px) {
    .single-flex-blog.style-02 .single-flex-blog-contents-title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog.style-02 {
        display: block;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog.style-02 .single-flex-blog-thumbs {
        margin-bottom: 20px;
        margin: 0 0 30px;
    }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog.style-02 .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-flex-blog-thumbs {
        margin-bottom: 20px;
        margin: 0 0 30px;
    }
}
.single-flex-blog-contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.single-flex-blog-contents-dates {
    font-size: 16px;
    color: var(--extra-light-color);
    line-height: 28px;
}
.single-flex-blog-contents-title {
    font-size: 36px;
    line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog-contents-title {
        font-size: 28px;
        line-height: 32px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-flex-blog-contents-title {
        font-size: 28px;
        line-height: 32px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog-contents-title {
        font-size: 26px;
        line-height: 32px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog-contents-title {
        font-size: 26px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog-contents-title {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media only screen and (max-width: 480px) {
    .single-flex-blog-contents-title {
        font-size: 24px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}

/* Brand Logo */
.single-brand-item:hover img {
    -webkit-filter: invert(0%) sepia(100%) saturate(71%) hue-rotate(0deg) brightness(6%) contrast(53%);
    filter: invert(0%) sepia(100%) saturate(71%) hue-rotate(0deg) brightness(6%) contrast(53%);
}
.single-brand-item img {
    -webkit-transition: 200ms;
    transition: 200ms;
}

/* Blog Details area */
.single-blog-details-thumb img {
    width: 100%;
}
.single-blog-details-content {
    padding: 30px 0 55px;
    border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
.single-blog-details-content-title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    margin: -9px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-blog-details-content-title {
        font-size: 42px;
        line-height: 48px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-blog-details-content-title {
        font-size: 42px;
        line-height: 48px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-blog-details-content-title {
        font-size: 36px;
        line-height: 48px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-blog-details-content-title {
        font-size: 32px;
        line-height: 42px;
    }
}
@media only screen and (max-width: 480px) {
    .single-blog-details-content-title {
        font-size: 28px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 375px) {
    .single-blog-details-content-title {
        font-size: 26px;
        line-height: 36px;
    }
}
.single-blog-details-content-para {
    font-size: 16px;
    line-height: 28px;
    color: var(--light-color);
}
.single-blog-details-content-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.single-blog-details-content-tags-item {
    font-size: 16px;
    color: var(--extra-light-color);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.single-blog-details-content-tags-item:not(:last-child) {
    padding-right: 20px;
}
.single-blog-details-content-tags-item:not(:first-child) {
    padding-left: 20px;
}
.single-blog-details-content-tags-item:not(:first-child)::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    left: -5px;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--main-color-one);
    border-radius: 50%;
}
.single-blog-details-content-tags-item a {
    position: relative;
    font-weight: 500;
    color: var(--light-color);
    -webkit-transition: 200ms;
    transition: 200ms;
}
.single-blog-details-content-tags-item a:hover {
    color: var(--main-color-one);
}
.single-blog-details-content-tags-item a:not(:last-child)::after {
    content: ",";
    margin: 0 5px;
}

blockquote {
    padding: 50px;
    position: relative;
    border-left: 5px solid var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
    blockquote {
        padding: 20px;
    }
}
@media only screen and (max-width: 375px) {
    blockquote {
        padding: 15px;
    }
}
blockquote .blockquote-contents-title {
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
    margin: -10px 0 0;
    color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    blockquote .blockquote-contents-title {
        font-size: 32px;
        line-height: 45px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    blockquote .blockquote-contents-title {
        font-size: 28px;
        line-height: 42px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    blockquote .blockquote-contents-title {
        font-size: 26px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 767.98px) {
    blockquote .blockquote-contents-title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 575.98px) {
    blockquote .blockquote-contents-title {
        font-size: 22px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 480px) {
    blockquote .blockquote-contents-title {
        font-size: 18px;
    }
}
@media only screen and (max-width: 375px) {
    blockquote .blockquote-contents-title {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Blog Details Tag */
.blog-details-share-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .blog-details-share-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.blog-details-share-content.right-align {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .blog-details-share-content.right-align {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.blog-details-share-content-title {
    font-size: 24px;
    line-height: 28px;
    color: var(--heading-color);
    font-weight: 400;
    margin-top: 2px;
}
.blog-details-share-content .blog-details-share-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.blog-details-share-content .blog-details-share-social-list-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    height: 40px;
    width: 40px;
    font-size: 20px;
    background-color: #f2f2f2;
    color: var(--heading-color);
    -webkit-transition: 200ms;
    transition: 200ms;
}
.blog-details-share-content .blog-details-share-social-list-icon:hover {
    background-color: var(--main-color-one);
    color: #fff;
}
.blog-details-share-content .blog-details-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.blog-details-share-content .blog-details-tag-list-item {
    font-size: 16px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    padding: 10px 20px;
    color: var(--heading-color);
    border-radius: 3px;
    -webkit-transition: 200ms;
    transition: 200ms;
}
.blog-details-share-content .blog-details-tag-list-item:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

/* Blog Details Comment area */
/* Comment Output */
.details-section-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
    margin: -10px 0 0;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 15px;
}
.details-section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 70px;
    background-color: var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .details-section-title {
        font-size: 32px;
        line-height: 42px;
    }
}
@media only screen and (max-width: 480px) {
    .details-section-title {
        font-size: 28px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 375px) {
    .details-section-title {
        font-size: 26px;
    }
}

.details-comment-content .single-commetns {
    width: 100%;
    margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--heading-color);
    display: block;
    margin-bottom: 15px;
}
.details-comment-content .single-commetns .form--control {
    height: 60px;
    border: 1px solid rgba(221, 221, 221, 0.2);
    outline: none;
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
    font-size: 14px;
    line-height: 22px;
    color: var(--light-color);
    padding: 0 20px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.details-comment-content .single-commetns .form--control:focus {
    -webkit-box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
    box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
    border-color: rgba(var(--main-color-one-rgb), 0.3);
}
.details-comment-content .single-commetns .form--message {
    padding: 20px 20px;
    height: 160px;
}

.comments-flex-item {
    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;
    gap: 30px;
}
@media only screen and (max-width: 575.98px) {
    .comments-flex-item {
        display: block;
    }
}

.comment-list .comment-list {
    margin-left: 120px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .comment-list .comment-list {
        margin-left: 70px;
    }
}
@media only screen and (max-width: 767.98px) {
    .comment-list .comment-list {
        margin-left: 50px;
    }
}
@media only screen and (max-width: 375px) {
    .comment-list .comment-list {
        margin-left: 30px;
    }
}
.comment-list .blog-details-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0;
    gap: 30px;
    border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .comment-list .blog-details-flex-content {
        gap: 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .comment-list .blog-details-flex-content {
        gap: 10px;
        padding: 30px 0 20px;
    }
}
@media only screen and (max-width: 480px) {
    .comment-list .blog-details-flex-content {
        display: block;
    }
}
.comment-list .blog-details-flex-content .blog-details-thumb {
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    display: block;
}
@media only screen and (max-width: 480px) {
    .comment-list .blog-details-flex-content .blog-details-thumb {
        width: 80px;
        margin-bottom: 15px;
    }
}
.comment-list .blog-details-flex-content .blog-details-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.comment-list .blog-details-flex-content .blog-details-content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.comment-list .blog-details-flex-content .blog-details-content-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}
@media only screen and (max-width: 375px) {
    .comment-list .blog-details-flex-content .blog-details-content-title {
        font-size: 18px;
    }
}
.comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
    margin-top: 10px;
    line-height: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .comment-list .blog-details-flex-content .blog-details-content-para {
        font-size: 16px;
    }
}
@media only screen and (max-width: 575.98px) {
    .comment-list .blog-details-flex-content .blog-details-content-para {
        font-size: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .comment-list .blog-details-flex-content .blog-details-content-para {
        font-size: 14px;
    }
}
.comment-list .blog-details-flex-content .blog-details-content-date {
    color: var(--extra-light-color);
    margin-top: 5px;
    display: block;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    background-color: var(--main-color-one);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid var(--main-color-one);
    -webkit-transition: 300ms;
    transition: 300ms;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
    color: var(--main-color-one);
    background-color: unset;
}
.global-card-thumb a{
    display: inline-block;
    max-height: 344px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
}
.signle-collection .collction-thumb a {
    max-height: 300px;
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
}

@media only screen and (max-width: 575.98px) {
    .search-bar .menu-search-form .item-search {
        width: 100%;
        height: 45px;
        background: none;
        border: 1px solid rgba(0, 0, 0, 0.2);
        outline: none;
        text-transform: capitalize;
        padding: 08px 10px;
        padding-right: 70px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 0px;
        color: var(--light-color);
    }
    .search-bar .menu-search-form button {
        position: absolute;
        right: 0;
        height: 100%;
        padding: 0 10px;
        background: var(--main-color-one);
        border: 0;
        outline: none;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        cursor: pointer;
    }
    .search-suggestions-inner {
        padding: 10px;
        background: var(--section-bg-3);
    }
    .search-suggestions-title {
        font-size: 16px;
    }
    .search-bar .menu-search-form .search-close {
        bottom: -38px;
        font-size: 14px;
        padding: 2px 08px;
    }
    .product-suggestion-list-link .product-image img {
        /*max-width: 55%;*/
        max-height: 100px;
    }
}

@media only screen and (max-width: 575.98px) {
    .global-card .price-update-through,
    .signle-collection .price-update-through,
    .signle-collection .price-update-through.common-price-title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 4px;
        line-height: 1.4;
    }
    .global-card .price-update-through .flash-prices,
    .signle-collection .price-update-through .flash-prices {
        font-size: 15px !important;
    }
    .global-card .price-update-through .flash-old-prices,
    .signle-collection .price-update-through .flash-old-prices {
        font-size: 13px !important;
    }
}


/* ============================================================================
   ORCHID REDESIGN — BASE LAYER
   Ported from "Orchid Storefront.dc.html" + "Orchid Widgets.dc.html".
   Phase 1: chrome (ticker, header, mega menu, breadcrumb, footer).

   Rules this layer obeys:
     - logical properties only (no left/right/margin-left)
     - border-radius is 0, 999px or 50% — nothing else
     - one media query only: the 760px header structure swap
     - every text element carries an explicit colour
     - clamp() everywhere; design cqi -> vw at page level, numbers unchanged
   ============================================================================ */

.orchid {
  /* ---- palette ---- */
  --o-cream:         #FBF9F3;
  --o-cream-2:       #F4F1E8;
  --o-cream-3:       #EFEBE0;
  --o-ink:           #131610;
  --o-ink-2:         #3F4436;
  --o-ink-3:         #55594A;
  --o-muted:         #6E7263;
  --o-muted-2:       #7A7F6C;
  --o-muted-3:       #8A8D7C;
  --o-moss:          #3E5334;
  --o-sage:          #8A9C7C;
  --o-sage-light:    #B9C7A9;
  --o-terracotta:    #A85B3C;
  --o-terracotta-bg: #F3E4DE;
  --o-moss-bg:       #E3E8DC;
  --o-moss-dark:     #2C3B25;
  --o-on-ink:        #EDE9DC;   /* ticker + footer body text on ink */
  --o-slash:         #9A9E8C;   /* breadcrumb separator */

  /* Ink and on-ink as bare RGB triplets. Borders, shadows and scrims are all
     tinted ink, so they derive from these rather than repeating the literal —
     otherwise a tenant recolouring ink in the Storefront hub would leave every
     border and shadow the original greenish-black. Same values as above. */
  --o-ink-rgb:    19, 22, 16;
  --o-on-ink-rgb: 237, 233, 220;

  /* ---- borders: four opacities, each with a job. Do not collapse. ---- */
  --o-bd-divider: rgba(var(--o-ink-rgb), .10);
  --o-bd-card:    rgba(var(--o-ink-rgb), .14);
  --o-bd-row:     rgba(var(--o-ink-rgb), .09);
  --o-bd-icon:    rgba(var(--o-ink-rgb), .16);
  --o-bd-input:   rgba(var(--o-ink-rgb), .20);
  --o-bd-cta:     rgba(var(--o-ink-rgb), .22);
  --o-bd-btn:     rgba(var(--o-ink-rgb), .25);
  --o-bd-on-ink:  rgba(var(--o-on-ink-rgb), .25);

  /* ---- spacing ramp: every value in the design comes from this scale ---- */
  --o-sec-pt:    clamp(28px, 4.58vw, 66px);
  --o-sec-pb:    clamp(32px, 5.28vw, 76px);
  --o-sec-pi:    clamp(24px, 3.89vw, 56px);
  --o-card-p:    clamp(13px, 2.08vw, 30px);
  --o-gap-tight: clamp(12px, 1.67vw, 24px);
  --o-gap:       clamp(12px, 1.94vw, 28px);
  --o-gap-loose: clamp(15px, 2.50vw, 36px);

  /* ---- type ---- */
  --o-sans:  'Tajawal', system-ui, -apple-system, sans-serif;
  --o-serif: 'Fraunces', 'Tajawal', Georgia, serif;

  /* ---- shadows: three, only on lifted surfaces. Cards use borders. ---- */
  --o-shadow-mega:   0 30px 50px -24px rgba(var(--o-ink-rgb), .28);
  --o-shadow-drawer: 0 26px 44px -22px rgba(var(--o-ink-rgb), .34);
  --o-shadow-sheet:  0 20px 50px -26px rgba(var(--o-ink-rgb), .35);

  /* ---- per-component tokens ----
     Each defaults to a palette token, so the storefront renders identically when
     nothing is set. The Storefront hub's Colours pane writes an override only for
     the ones a tenant actually changes; everything else keeps inheriting. */
  --o-header-bg:      var(--o-cream);
  --o-header-text:    var(--o-ink);
  --o-header-border:  var(--o-bd-divider);
  --o-footer-bg:      var(--o-ink);
  --o-footer-text:    var(--o-on-ink);
  --o-footer-heading: var(--o-cream);
  --o-btn-bg:         var(--o-ink);
  --o-btn-text:       var(--o-cream);
  --o-btn-hover-bg:   var(--o-moss);
  --o-badge-sale-bg:   var(--o-terracotta);
  --o-badge-sale-text: var(--o-cream);
  --o-ticker-bg:      var(--o-ink);
  --o-ticker-text:    var(--o-on-ink);
  --o-crumb-bg:       var(--o-cream-2);
  --o-crumb-text:     var(--o-muted-2);
  --o-crumb-current:  var(--o-ink);

  /* ---- per-component size ----
     A plain multiplier on the handful of declarations that set a section's own
     scale (its type and its block padding). 1 is the shipped design; the hub
     writes an override only when a tenant moves the slider. Deliberately NOT a
     root font-size — this design is px-based, so rem scaling would do nothing. */
  --o-header-scale: 1;
  --o-ticker-scale: 1;
  --o-footer-scale: 1;
  --o-crumb-scale:  1;
  --o-btn-scale:    1;
  --o-badge-scale:  1;

  font-family: var(--o-sans);
  color: var(--o-ink);
  background: var(--o-cream);
}

/* ---------------------------------------------------------------------------
   Vendor reset. Bootstrap + the legacy aromatic stylesheet bring radius,
   heading margins, button padding and line-heights that silently override
   measured design values. Zero them inside .orchid rather than layering on top.
   --------------------------------------------------------------------------- */
.orchid *,
.orchid *::before,
.orchid *::after { box-sizing: border-box; }

.orchid h1, .orchid h2, .orchid h3,
.orchid h4, .orchid h5, .orchid h6,
.orchid p,  .orchid ul, .orchid ol, .orchid figure {
  margin: 0;
  padding: 0;
}

.orchid ul, .orchid ol { list-style: none; }

.orchid a {
  color: var(--o-moss);
  text-decoration: none;
  transition: color .22s ease;
}
.orchid a:hover { color: var(--o-ink); }

.orchid button,
.orchid input,
.orchid select,
.orchid textarea {
  font: inherit;
  border-radius: 0;
  margin: 0;
}
.orchid button { cursor: pointer; background: none; border: 0; padding: 0; }

.orchid img { max-width: 100%; display: block; }

/* Squared, not rounded — the single most likely vendor leak. */
.orchid :where(div, section, article, aside, header, footer, nav, ul, li,
               a, span, p, h1, h2, h3, h4, h5, h6, img, button, input,
               select, textarea, table, th, td, form, label) {
  border-radius: 0;
}
/* ...then the three shapes that ARE round, re-asserted. */
.orchid .o-pill,
.orchid .o-chip,
.orchid .o-icon-btn,
.orchid .o-count,
.orchid .o-dot,
.orchid .o-search { border-radius: 999px; }
.orchid .o-avatar,
.orchid .o-bullet { border-radius: 50%; }

/* ---------------------------------------------------------------------------
   Type
   --------------------------------------------------------------------------- */
.orchid .o-h1        { font: 300 clamp(36px, 4.58vw, 66px)/1.06 var(--o-serif); letter-spacing: -.02em; color: var(--o-ink); }
.orchid .o-h1-page   { font: 300 clamp(29px, 3.61vw, 52px)/1.05 var(--o-serif); letter-spacing: -.02em; color: var(--o-ink); }
.orchid .o-h2        { font: 300 clamp(21px, 2.64vw, 38px)/1.1  var(--o-serif); letter-spacing: -.02em; color: var(--o-ink); }
.orchid .o-h3        { font: 400 clamp(17px, 1.53vw, 22px)/1.35 var(--o-serif); color: var(--o-ink); }
.orchid .o-body      { font: 400 15px/1.8 var(--o-sans); color: var(--o-muted); }
.orchid .o-card-title{ font: 500 16px/1.35 var(--o-sans); color: var(--o-ink); }
.orchid .o-label,
.orchid .o-meta      { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid .o-price     { font: 500 17px/1 var(--o-serif); color: var(--o-ink); }

.orchid .o-kicker {
  font: 500 11px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-moss);
}
.orchid .o-kicker--card { font-size: 10px; color: var(--o-sage); }
.orchid .o-kicker--dark { color: var(--o-sage-light); }

/* Letter-spacing is a Latin treatment — it breaks Arabic glyph joining.
   Scope all tracking to LTR. This is why rtl.css stays empty. */
[dir="ltr"] .orchid .o-kicker        { letter-spacing: .26em; }
[dir="ltr"] .orchid .o-kicker--card  { letter-spacing: .20em; }
[dir="ltr"] .orchid .o-kicker--panel { letter-spacing: .22em; }

/* Numerals stay LTR inside Arabic text — prices, counts, order numbers. */
.orchid .o-ltr { direction: ltr; unicode-bidi: isolate; }

/* Material Symbols — every icon in the design. No SVG sets, no emoji. */
.orchid .o-i {
  font-family: 'Material Symbols Outlined';
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  font-variation-settings: 'opsz' 24;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: var(--o-ink);
}

/* ---------------------------------------------------------------------------
   Atoms — build once, compose screens from these. Values transcribed exactly.
   --------------------------------------------------------------------------- */

/* Buttons */
.orchid .o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  border: 0;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid .o-btn--primary {
  padding: calc(16px * var(--o-btn-scale)) clamp(13px, 2.22vw, 32px);
  background: var(--o-btn-bg);
  color: var(--o-btn-text);
  font: 600 14px/1 var(--o-sans);
  font-size: calc(14px * var(--o-btn-scale));
}
.orchid .o-btn--primary:hover { background: var(--o-btn-hover-bg); color: var(--o-btn-text); }

.orchid .o-btn--secondary {
  padding: 16px clamp(12px, 1.94vw, 28px);
  border: 1px solid var(--o-bd-btn);
  background: transparent;
  color: var(--o-ink);
  font: 500 14px/1 var(--o-sans);
}
.orchid .o-btn--secondary:hover { background: var(--o-cream-3); color: var(--o-ink); }

.orchid .o-btn--card {
  padding: 13px;
  border: 1px solid var(--o-bd-cta);
  background: transparent;
  color: var(--o-ink);
  font: 500 13px/1 var(--o-sans);
}
.orchid .o-btn--card:hover { background: var(--o-ink); color: var(--o-cream); }

.orchid .o-btn--small { padding: 12px 20px; font: 500 13px/1 var(--o-sans); color: var(--o-ink); }
.orchid .o-btn--small .o-i { font-size: 17px; }

.orchid .o-btn--inverse {
  padding: 16px clamp(13px, 2.22vw, 32px);
  background: var(--o-cream);
  color: var(--o-ink);
  font: 600 14px/1 var(--o-sans);
}
.orchid .o-btn--inverse:hover { background: var(--o-sage); color: var(--o-ink); }

.orchid .o-btn--ghost {
  padding: 16px clamp(12px, 1.94vw, 28px);
  border: 1px solid rgba(251, 249, 243, .5);
  background: transparent;
  color: var(--o-cream);
  font: 500 14px/1 var(--o-sans);
}
.orchid .o-btn--ghost:hover { background: rgba(251, 249, 243, .12); color: var(--o-cream); }

/* Fields */
.orchid .o-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--o-bd-input);
  background: var(--o-cream);
  font: 400 14px/1 var(--o-sans);
  color: var(--o-ink);
  transition: border-color .22s ease;
}
.orchid .o-input::placeholder { color: var(--o-muted-2); opacity: 1; }
.orchid .o-input:hover,
.orchid .o-input:focus { border-color: var(--o-moss); outline: none; }

.orchid .o-field-label {
  display: block;
  margin-block-end: 8px;
  font: 400 12px/1 var(--o-sans);
  color: var(--o-muted-2);
}

/* Search pill */
.orchid .o-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 214px;
  padding: 9px 14px;
  border: 1px solid var(--o-bd-icon);
  background: var(--o-cream-2);
  transition: border-color .22s ease;
}
.orchid .o-search:hover { border-color: var(--o-moss); }
.orchid .o-search .o-i { font-size: 19px; color: var(--o-muted-2); }
/* :not(.o-i) is load-bearing — this is a `font:` SHORTHAND, so it resets
   font-family too. Without the exclusion it beats `.orchid .o-i` (same class
   count, one more element) and the Material Symbols glyph renders as the
   literal word "search". */
.orchid .o-search span:not(.o-i),
.orchid .o-search input { font: 400 13px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid .o-search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0; }
.orchid .o-search input:focus { outline: none; }

/* Chips / pills */
.orchid .o-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--o-bd-input);
  background: transparent;
  color: var(--o-ink-2);
  font: 500 13px/1 var(--o-sans);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid .o-chip:hover { border-color: var(--o-ink); color: var(--o-ink); }
.orchid .o-chip.is-active {
  background: var(--o-ink);
  color: var(--o-cream);
  border-color: var(--o-ink);
}

/* Icon buttons + count bubbles */
.orchid .o-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--o-bd-icon);
  background: transparent;
  transition: background .22s ease, border-color .22s ease;
}
.orchid .o-icon-btn:hover { background: var(--o-cream-3); border-color: var(--o-moss); }
.orchid .o-icon-btn .o-i { font-size: 20px; color: var(--o-ink); }

.orchid .o-icon-btn--mobile { width: 42px; height: 42px; }
.orchid .o-icon-btn--mobile .o-i { font-size: 21px; }

.orchid .o-count {
  position: absolute;
  inset-block-start: -4px;
  inset-inline-end: -4px;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--o-moss);
  color: var(--o-cream);
  font: 600 10px/1 var(--o-serif);
  direction: ltr;
}
/* The bubble is always in the DOM so the AJAX refresh only has to set text —
   an empty basket simply hides it. */
.orchid .o-count:empty { display: none; }

/* Badges + status */
.orchid .o-badge-sale {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  padding: calc(6px * var(--o-badge-scale)) calc(12px * var(--o-badge-scale));
  background: var(--o-badge-sale-bg);
  color: var(--o-badge-sale-text);
  font: 600 11px/1 var(--o-sans);
  font-size: calc(11px * var(--o-badge-scale));
}
[dir="ltr"] .orchid .o-badge-sale { letter-spacing: .12em; }

.orchid .o-pill-unpaid {
  display: inline-flex;
  padding: 6px 13px;
  background: var(--o-terracotta-bg);
  color: var(--o-terracotta);
  font: 600 11px/1 var(--o-sans);
}
[dir="ltr"] .orchid .o-pill-unpaid { letter-spacing: .06em; }

.orchid .o-info-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: var(--o-moss-bg);
  color: var(--o-moss-dark);
  font: 500 13px/1 var(--o-sans);
}
.orchid .o-info-strip .o-i { font-size: 19px; color: var(--o-moss); }

.orchid .o-dot { width: 4px; height: 4px; background: var(--o-sage); flex: 0 0 auto; }

/* ---------------------------------------------------------------------------
   The three layout patterns. Everything in the design is one of these.
   --------------------------------------------------------------------------- */

/* Pattern A — item grids. min(46%,N): the 46% forces 2-up on a phone,
   N sets desktop density. Column counts are consequences of the maths. */
.orchid .o-grid       { display: grid; gap: var(--o-gap); }
.orchid .o-grid--180  { grid-template-columns: repeat(auto-fit, minmax(min(46%, 180px), 1fr)); }
.orchid .o-grid--230  { grid-template-columns: repeat(auto-fit, minmax(min(46%, 230px), 1fr)); }
.orchid .o-grid--260  { grid-template-columns: repeat(auto-fit, minmax(min(46%, 260px), 1fr)); }
.orchid .o-grid--320  { grid-template-columns: repeat(auto-fit, minmax(min(46%, 320px), 1fr)); }

/* Pattern B — two-pane splits. No min(): collapses to one column below ~700px. */
.orchid .o-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: var(--o-sec-pi);
}
.orchid .o-split--stretch { align-items: stretch; }
.orchid .o-split--start   { align-items: start; }
.orchid .o-span-all       { grid-column: 1 / -1; }

/* Pattern C — sidebar + content. flex:999 keeps content greedy so the sidebar
   never grows past its basis; flex-wrap drops it without a media query.
   min-width:0 on both is mandatory or long words force horizontal overflow. */
.orchid .o-shell   { display: flex; flex-wrap: wrap; }
.orchid .o-aside   { flex: 1 1 246px; min-width: 0; }
.orchid .o-content { flex: 999 1 62%; min-width: 0; }

/* Wide tables scroll, they do not crush. */
.orchid .o-table-scroll { overflow-x: auto; }
.orchid .o-table-scroll > * { min-width: 620px; }

/* Section rhythm */
.orchid .o-section {
  padding-block: var(--o-sec-pt) var(--o-sec-pb);
  padding-inline: var(--o-sec-pi);
}

/* ============================================================================
   CHROME — Phase 1
   ============================================================================ */

/* ---- Announcement ticker (widget 03) ------------------------------------- */
.orchid-ticker {
  display: flex;
  align-items: center;
  height: calc(40px * var(--o-ticker-scale));
  background: var(--o-ticker-bg);
  overflow: hidden;
}
.orchid-ticker__track {
  display: flex;
  width: 200%;
  animation: orchid-marquee 36s linear infinite;
}
[dir="rtl"] .orchid-ticker__track { animation-name: orchid-marquee-rtl; }

.orchid-ticker__item {
  display: flex;
  align-items: center;
  gap: clamp(13px, 2.22vw, 32px);
  padding-inline-end: 32px;
  white-space: nowrap;
}
.orchid-ticker__item span {
  font: 500 12px/1 var(--o-sans);
  font-size: calc(12px * var(--o-ticker-scale));
  color: var(--o-ticker-text);
}
[dir="ltr"] .orchid-ticker__item span { letter-spacing: .05em; }

@keyframes orchid-marquee     { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes orchid-marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@keyframes orchid-slidein     { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Header shell -------------------------------------------------------- */
.orchid-header {
  position: relative;
  z-index: 40;
  background: var(--o-header-bg);
  color: var(--o-header-text);
  border-block-end: 1px solid var(--o-header-border);
}

.orchid-brand { display: flex; flex-direction: column; gap: 3px; }
.orchid-brand__name {
  font: 600 clamp(14px, 1.81vw, 26px)/1 var(--o-serif);
  font-size: calc(clamp(14px, 1.81vw, 26px) * var(--o-header-scale));
  letter-spacing: -.01em;
  color: var(--o-header-text);
}
.orchid-brand__sub {
  font: 500 9px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-muted-2);
}
[dir="ltr"] .orchid-brand__sub { letter-spacing: .3em; }
.orchid-brand__name img { max-height: 34px; width: auto; }

/* ---- Wide header (>= 760px) ---------------------------------------------- */
.orchid-header__wide { display: none; }

.orchid-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.36vw, 34px);
  padding: calc(20px * var(--o-header-scale)) var(--o-sec-pi);
}
.orchid-header__actions {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nav — styles whatever render_frontend_menu() emits.
   Contract: <li> (optionally .menu-item-has-children) > <a>, plus <ul.sub-menu>. */
.orchid-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.81vw, 26px);
  margin-inline-start: 18px;
}
.orchid-nav > ul > li { position: static; }
.orchid-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: 8px;
  border-block-end: 2px solid transparent;
  font: 500 14px/1 var(--o-sans);
  font-size: calc(14px * var(--o-header-scale));
  color: var(--o-header-text);
  transition: color .22s ease, border-color .22s ease;
}
.orchid-nav > ul > li > a:hover,
.orchid-nav > ul > li.current-menu-item > a { color: var(--o-moss); }
.orchid-nav > ul > li.current-menu-item > a { border-block-end-color: var(--o-moss); }

/* Any nav item with children gets the expand chevron + mega panel. */
.orchid-nav > ul > li.menu-item-has-children > a::after {
  content: 'expand_more';
  font-family: 'Material Symbols Outlined';
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  font-variation-settings: 'opsz' 24;
  color: var(--o-muted-2);
}

/* Mega menu panel (widget 21) — the sub-menu promoted to a full-width panel. */
.orchid-nav ul.sub-menu {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  z-index: 44;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: var(--o-gap-loose);
  padding: clamp(14px, 2.36vw, 34px) var(--o-sec-pi) clamp(16px, 2.64vw, 38px);
  background: var(--o-cream);
  border-block-end: 1px solid rgba(var(--o-ink-rgb), .12);
  box-shadow: var(--o-shadow-mega);
  animation: orchid-slidein .22s ease-out;
}
.orchid-nav > ul > li.menu-item-has-children:hover > ul.sub-menu,
.orchid-nav > ul > li.menu-item-has-children:focus-within > ul.sub-menu { display: grid; }

.orchid-nav ul.sub-menu > li { display: flex; flex-direction: column; gap: 13px; }
.orchid-nav ul.sub-menu > li > a {
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-sage);
}
[dir="ltr"] .orchid-nav ul.sub-menu > li > a { letter-spacing: .22em; }

.orchid-nav ul.sub-menu ul.sub-menu {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  animation: none;
}
.orchid-nav ul.sub-menu ul.sub-menu > li > a {
  font: 400 14px/1 var(--o-sans);
  text-transform: none;
  letter-spacing: normal;
  color: var(--o-ink-2);
}
.orchid-nav ul.sub-menu ul.sub-menu > li > a:hover { color: var(--o-moss); }

/* Mega promo tile */
.orchid-mega__promo {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: var(--o-cream-3);
}
.orchid-mega__promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orchid-mega__promo-cap {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(var(--o-ink-rgb), .85), transparent);
  font: 500 13px/1.4 var(--o-sans);
  color: var(--o-cream);
}

/* ---- Mobile header (< 760px) --------------------------------------------- */
.orchid-header__mobile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(16px, 3.89vw, 24px);
}
.orchid-header__mobile-row .orchid-brand {
  margin-inline: auto;
  align-items: center;
  gap: 2px;
}
.orchid-header__mobile-row .orchid-brand__name { font-size: calc(21px * var(--o-header-scale)); }
.orchid-header__mobile-row .orchid-brand__sub  { font-size: calc(7px * var(--o-header-scale)); }
[dir="ltr"] .orchid-header__mobile-row .orchid-brand__sub { letter-spacing: .28em; }

/* Drawer */
.orchid-drawer {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  z-index: 44;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px clamp(16px, 3.89vw, 24px) 22px;
  background: var(--o-cream);
  border-block-end: 1px solid rgba(var(--o-ink-rgb), .12);
  box-shadow: var(--o-shadow-drawer);
  animation: orchid-slidein .22s ease-out;
}
.orchid-drawer.is-open { display: flex; }
.orchid-drawer .o-search { width: 100%; padding: 11px 14px; margin-block-end: 10px; }

.orchid-drawer__links > ul > li > a,
.orchid-drawer__links > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 4px;
  border-block-end: 1px solid var(--o-bd-row);
  font: 500 16px/1 var(--o-sans);
  color: var(--o-ink);
}
.orchid-drawer__links > ul > li > a:hover { color: var(--o-moss); }
.orchid-drawer__links > ul > li > a::after {
  content: var(--o-next-glyph, 'chevron_right');
  font-family: 'Material Symbols Outlined';
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: var(--o-sage);
}
.orchid-drawer__links ul.sub-menu {
  display: flex;
  flex-direction: column;
  padding-inline-start: 14px;
}
.orchid-drawer__links ul.sub-menu > li > a {
  font-weight: 400;
  font-size: 14px;
  color: var(--o-ink-2);
}
.orchid-drawer__links ul.sub-menu > li > a::after { content: none; }

.orchid-drawer__auth { display: flex; gap: 10px; margin-block-start: 14px; }
.orchid-drawer__auth > a { flex: 1; padding: 14px; text-align: center; }

/* Account dropdown */
.orchid-account { position: relative; }
.orchid-account__menu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 46;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 8px 0;
  background: var(--o-cream);
  border: 1px solid var(--o-bd-card);
  box-shadow: var(--o-shadow-mega);
}
.orchid-account:hover .orchid-account__menu,
.orchid-account:focus-within .orchid-account__menu { display: flex; }
.orchid-account__menu a {
  padding: 11px 16px;
  font: 400 13px/1 var(--o-sans);
  color: var(--o-ink-2);
}
.orchid-account__menu a:hover { background: var(--o-cream-3); color: var(--o-moss); }

/* ---- Cart hover preview ---------------------------------------------------
   Same shell as .orchid-account__menu, wider. Rows keep the platform's
   .single-addto-carts / .close-cart classes so its remove handler still works —
   see _cart-preview.blade.php.
   -------------------------------------------------------------------------- */
.orchid-cart { position: relative; }
.orchid-cart__menu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 47;
  display: none;
  flex-direction: column;
  width: 328px;
  max-width: 92vw;
  background: var(--o-cream);
  border: 1px solid var(--o-bd-card);
  box-shadow: var(--o-shadow-mega);
}
.orchid-cart:hover .orchid-cart__menu,
.orchid-cart:focus-within .orchid-cart__menu { display: flex; }

.orchid-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-block-end: 1px solid var(--o-bd-row);
}
.orchid-cart__n { font: 500 12px/1 var(--o-serif); color: var(--o-muted-2); direction: ltr; }

.orchid-cart__list { max-height: 296px; overflow-y: auto; overscroll-behavior: contain; }

.orchid-cart__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
}
.orchid-cart__row + .orchid-cart__row { border-block-start: 1px solid var(--o-bd-row); }

.orchid-cart__thumb { flex: 0 0 44px; line-height: 0; }
.orchid-cart__thumb img { width: 44px; height: 55px; object-fit: cover; display: block; }

.orchid-cart__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.orchid-cart__name {
  font: 500 13px/1.35 var(--o-sans);
  color: var(--o-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orchid-cart__meta  { font: 400 11px/1.3 var(--o-sans); color: var(--o-muted-2); }
.orchid-cart__line  { display: flex; align-items: baseline; gap: 5px; }
.orchid-cart__x     { font: 400 11px/1 var(--o-sans); color: var(--o-muted-3); }
.orchid-cart__price { font: 500 13px/1 var(--o-serif); color: var(--o-ink); }

.orchid-cart__del { flex: 0 0 auto; color: var(--o-muted-2); }
.orchid-cart__del .o-i { font-size: 16px; color: inherit; }
.orchid-cart__del:hover { color: var(--o-terracotta); }

.orchid-cart__empty {
  padding: 26px 16px;
  text-align: center;
  font: 400 13px/1.5 var(--o-sans);
  color: var(--o-muted-2);
}

.orchid-cart__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-block-start: 1px solid var(--o-bd-card);
}
.orchid-cart__sum {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-block-end: 2px;
  font: 400 12px/1 var(--o-sans);
  color: var(--o-muted-2);
}
.orchid-cart__total { font: 500 16px/1 var(--o-serif); color: var(--o-ink); }
.orchid-cart__foot .o-btn { justify-content: center; padding-block: 13px; }

/* ---- Language switcher ----------------------------------------------------
   The markup is the platform's shared <x-language-change/>, injected into
   .orchid-header__actions by tenant/frontend/partials/navbar.blade.php and
   relabelled to two-letter codes there. That partial ships its own inline
   <style> with `!important` on the dropdown box, so those declarations have to
   be answered in kind; the trigger's are not !important and plain specificity
   (3 classes vs 2) is enough.
   -------------------------------------------------------------------------- */
.orchid .orchid-lang { display: inline-flex !important; align-items: center; }
.orchid .orchid-lang .language_dropdown { position: relative !important; }

.orchid .orchid-lang .selected-language {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--o-bd-icon);
  border-radius: 999px;
  background: transparent;
  font: 500 12px/1 var(--o-sans);
  letter-spacing: .06em;
  color: var(--o-ink);
  transition: background .22s ease, border-color .22s ease;
}
.orchid .orchid-lang .selected-language:hover {
  background: var(--o-cream-3);
  border-color: var(--o-moss);
}
.orchid .orchid-lang .selected-language i { font-size: 10px; color: var(--o-muted-2); }

/* Mirrors .orchid-account__menu so the two header dropdowns are one shape.
   Only the LOOK is overridden — the shared partial pins the box with a physical
   `left: 0 !important`, and answering that with a logical property would set
   inset-inline-end while its `left` still applied, stretching the panel in LTR.
   Its placement is fine; leave it alone. */
.orchid .orchid-lang .language_dropdown ul {
  min-width: 92px !important;
  padding: 8px 0 !important;
  background: var(--o-cream) !important;
  border: 1px solid var(--o-bd-card) !important;
  border-radius: 0 !important;
  box-shadow: var(--o-shadow-mega) !important;
}
.orchid .orchid-lang .language_dropdown ul li a {
  padding: 10px 16px !important;
  border-radius: 0 !important;
  font: 400 12px/1 var(--o-sans);
  letter-spacing: .06em;
  color: var(--o-ink-2) !important;
}
.orchid .orchid-lang .language_dropdown ul li a:hover {
  background: var(--o-cream-3) !important;
  color: var(--o-moss) !important;
}

/* Mobile header row: same pill, matching the 42px buttons there. */
.orchid .orchid-header__mobile-row .orchid-lang .selected-language {
  min-width: 42px;
  height: 42px;
}

/* ---- Breadcrumb (widget 22) ---------------------------------------------- */
.orchid-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: calc(16px * var(--o-crumb-scale)) var(--o-gap-loose);
  background: var(--o-crumb-bg);
}
.orchid-breadcrumb__item { display: flex; align-items: center; gap: 10px; }
.orchid-breadcrumb__item a,
.orchid-breadcrumb__item > span {
  font: 400 12px/1 var(--o-sans);
  font-size: calc(12px * var(--o-crumb-scale));
  color: var(--o-crumb-text);
}
.orchid-breadcrumb__item a:hover { color: var(--o-moss); }
.orchid-breadcrumb__sep {
  font: 400 11px/1 var(--o-sans);
  font-size: calc(11px * var(--o-crumb-scale));
  color: var(--o-slash);
}
.orchid-breadcrumb__current {
  font: 500 12px/1 var(--o-sans);
  font-size: calc(12px * var(--o-crumb-scale));
  color: var(--o-crumb-current);
}

/* ---- Footer (widget 19) -------------------------------------------------- */
.orchid-footer {
  background: var(--o-footer-bg);
  color: var(--o-footer-text);
  padding: calc(clamp(27px, 4.44vw, 64px) * var(--o-footer-scale)) var(--o-sec-pi) calc(clamp(12px, 1.81vw, 26px) * var(--o-footer-scale));
}
.orchid-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 3.06vw, 44px);
  padding-block-end: 46px;
  border-block-end: 1px solid rgba(var(--o-on-ink-rgb), .14);
}
.orchid-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-block-start: 22px;
}
.orchid-footer__copy,
.orchid-footer__bottom a {
  font: 400 12px/1 var(--o-sans);
  font-size: calc(12px * var(--o-footer-scale));
  color: rgba(var(--o-on-ink-rgb), .55);
}
.orchid-footer__bottom a:hover { color: var(--o-cream); }

/* Widget internals come from WidgetBuilder frontend_render(); this styles the
   zone wrapper + the common shapes those widgets emit. */
.orchid-footer .widget,
.orchid-footer__col { display: flex; flex-direction: column; gap: 14px; }

.orchid-footer h1, .orchid-footer h2, .orchid-footer h3,
.orchid-footer h4, .orchid-footer h5, .orchid-footer h6,
.orchid-footer .widget-title {
  font: 500 10px/1 var(--o-sans);
  font-size: calc(10px * var(--o-footer-scale));
  text-transform: uppercase;
  color: var(--o-sage);
}
[dir="ltr"] .orchid-footer h1, [dir="ltr"] .orchid-footer h2,
[dir="ltr"] .orchid-footer h3, [dir="ltr"] .orchid-footer h4,
[dir="ltr"] .orchid-footer h5, [dir="ltr"] .orchid-footer h6,
[dir="ltr"] .orchid-footer .widget-title { letter-spacing: .22em; }

.orchid-footer p,
.orchid-footer .o-body {
  font: 400 14px/1.8 var(--o-sans);
  font-size: calc(14px * var(--o-footer-scale));
  color: rgba(var(--o-on-ink-rgb), .72);
  max-width: 34ch;
}
.orchid-footer li > a,
.orchid-footer ul a {
  font: 400 14px/1 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .78);
}
.orchid-footer li > a:hover,
.orchid-footer ul a:hover { color: var(--o-cream); }
.orchid-footer ul { display: flex; flex-direction: column; gap: 14px; }

/* Social + payment chips inside footer widgets */
.orchid-footer .o-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--o-bd-on-ink);
  border-radius: 999px;
  color: var(--o-on-ink);
  font: 500 12px/1 var(--o-sans);
}
.orchid-footer .o-social:hover { background: var(--o-moss); color: var(--o-cream); }
.orchid-footer .o-pay {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(var(--o-on-ink-rgb), .2);
  font: 500 10px/1 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .7);
}
[dir="ltr"] .orchid-footer .o-pay { letter-spacing: .06em; }

.orchid-footer img { display: inline-block; }

/* ============================================================================
   THE ONE MEDIA QUERY — 760px header structure swap.
   This is a markup-structure change, not a scale, so a breakpoint is correct
   here. If a second media query appears in this theme, something else is wrong.
   ============================================================================ */
@media (min-width: 760px) {
  .orchid-header__wide   { display: block; }
  .orchid-header__mobile { display: none; }
}

/* Live search suggestions — panel for the markup injected by the global
   #search_form_input handler (tenant/frontend/partials/footer.blade.php). */
.orchid .o-search { position: relative; }
.orchid .orchid-suggest {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  /* Anchored to the pill's inline-start edge and grown toward inline-end, so it
     widens INTO the header instead of off the side of the viewport in either
     direction. The 214px pill is too narrow for an Arabic product name beside a
     thumbnail and two prices. */
  inset-inline-start: 0;
  inset-inline-end: auto;
  width: max(100%, 320px);
  max-width: 92vw;
  z-index: 46;
  background: var(--o-cream);
  border: 1px solid var(--o-bd-card);
  box-shadow: var(--o-shadow-mega);
  /* topbar_search() returns up to 20 rows — without the cap the panel runs off
     the bottom of the page. */
  max-height: min(60vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.orchid .orchid-suggest:not(:has(li)) { display: none; }

/* The platform styles this list as a SIX-COLUMN CARD GRID:
     .product-suggestion-list      { display: flex; flex-wrap: wrap; gap: 24px }
     .product-suggestion-list-item { width: calc(100% / 6 - 20px) }   (+5 more
                                     at other breakpoints, all one class deep)
   In a 320px dropdown that is a 33px row. The image is `flex: 0 0 40px` and the
   price line is its own flex box, so both simply OVERFLOW and stay visible —
   but the product name has `overflow: hidden`, so it clipped to nothing and the
   rows looked like image + price with the title missing. Resetting the width is
   the whole fix; do not remove it. */
.orchid .product-suggestion-list { display: block; }
.orchid .product-suggestion-list li { width: auto; }

/* The row shell is the <a>, NOT the <li> — topbar_search() nests one inside the
   other, so padding on both doubles the row height. */
.orchid .product-suggestion-list li + li { border-block-start: 1px solid var(--o-bd-row); }
.orchid .product-suggestion-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font: 400 13px/1.35 var(--o-sans);
  color: var(--o-ink-2);
}
.orchid .product-suggestion-list li a:hover { background: var(--o-cream-3); }

.orchid .product-suggestion-list .product-image { flex: 0 0 40px; line-height: 0; }
.orchid .product-suggestion-list img {
  width: 40px;
  height: 50px;          /* 4/5, the product-card ratio */
  object-fit: cover;
  display: block;
}
.orchid .product-suggestion-list .product-info { flex: 1 1 auto; min-width: 0; }

/* Bootstrap ships h6 a margin and .mt-2 an !important one; both have to go or
   the rows grow back. */
.orchid .product-suggestion-list .product-name {
  margin: 0;
  font: 500 13px/1.35 var(--o-sans);
  color: var(--o-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orchid .product-suggestion-list .product-price { margin: 3px 0 0 !important; }
.orchid .product-suggestion-list .price-update-through {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.orchid .product-suggestion-list .flash-price { font: 500 13px/1 var(--o-serif); color: var(--o-ink); }
.orchid .product-suggestion-list .flash-old-prices {
  font: 400 12px/1 var(--o-serif);
  color: var(--o-muted-3);
  text-decoration: line-through;
}
.orchid .product-suggestion-list .flash-old-prices:empty { display: none; }

/* ---------------------------------------------------------------------------
   Footer widget normalisation.
   WidgetBuilder classes emit legacy markup — some hardcode Bootstrap columns
   directly in their heredoc (TenantAboutUsWidgetOne: col-lg-3;
   TenantNewsletterOne: col-lg-8 offset-lg-1), which dropping the 'column' arg
   does NOT remove. Neutralise them so any widget behaves as a plain grid cell,
   then restyle the shapes they emit. Bootstrap utilities are !important, so a
   few overrides here have to be too.
   --------------------------------------------------------------------------- */
.orchid-footer [class*="col-"],
.orchid-footer [class*="offset-"] {
  flex: none !important;
  width: auto !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}
.orchid-footer .text-center      { text-align: start !important; }
.orchid-footer .justify-content-center { justify-content: flex-start !important; }
.orchid-footer .mt-4,
.orchid-footer .margin-top-30    { margin-block-start: 14px !important; }

/* Kill the entrance animations these widgets carry — the design has none here. */
.orchid-footer .animate__animated { animation: none !important; opacity: 1 !important; }

/* Brand column (TenantAboutUsWidgetOne) */
.orchid-footer .footer-logo img  { max-height: 40px; width: auto; }
.orchid-footer .about_us_widget  { margin-block-end: 16px; }
.orchid-footer .social_share,
.orchid-footer .footer-social-two {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: 4px;
}
.orchid-footer .social_share a,
.orchid-footer .footer-social-two a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--o-bd-on-ink);
  border-radius: 999px;
  color: var(--o-on-ink);
  font-size: 14px;
}
.orchid-footer .social_share a:hover,
.orchid-footer .footer-social-two a:hover { background: var(--o-moss); color: var(--o-cream); }

/* Link columns (TenantNavigationMenuWidget emits <h4> inside <ul>) */
.orchid-footer .footer-item-list { display: flex; flex-direction: column; gap: 14px; }
.orchid-footer .footer-item-list li > a { display: inline-block; }

/* Newsletter (TenantNewsletterOne) */
.orchid-footer .widget_subscribe .header-content { display: flex; flex-direction: column; gap: 14px; }
.orchid-footer .subscribe-form {
  display: flex;
  margin-block-start: 14px;
  border: 1px solid var(--o-bd-on-ink);
}
.orchid-footer .subscribe-form .form-group { flex: 1; min-width: 0; margin: 0; }
.orchid-footer .subscribe-form input.email {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  background: transparent;
  font: 400 13px/1 var(--o-sans);
  color: var(--o-on-ink);
}
.orchid-footer .subscribe-form input.email::placeholder { color: rgba(var(--o-on-ink-rgb),.5); }
.orchid-footer .subscribe-form input.email:focus { outline: none; }
.orchid-footer .subscribe-form .submit-btn {
  padding: 13px 20px;
  border: 0;
  background: var(--o-moss);
  color: var(--o-cream);
  font: 600 13px/1 var(--o-sans);
}
.orchid-footer .subscribe-form .submit-btn:hover { background: var(--o-sage); color: var(--o-ink); }

/* Payment chips (RawHTMLWidget — class-less spans, see WidgetSeed) */
.orchid-footer .custom-html-widget p { margin: 0; max-width: none; }
.orchid-footer .custom-html-widget span {
  display: inline-block;
  padding: 6px 10px;
  margin-inline-end: 8px;
  margin-block-start: 6px;
  border: 1px solid rgba(var(--o-on-ink-rgb), .2);
  font: 500 10px/1 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .7);
}
[dir="ltr"] .orchid-footer .custom-html-widget span { letter-spacing: .06em; }

/* Bottom-bar zones sit inline with the copyright */
.orchid-footer__bottom .widget { flex-direction: row; align-items: center; gap: 20px; }
.orchid-footer__bottom ul { flex-direction: row; flex-wrap: wrap; gap: 20px; }

/* The design's mobile drawer lists top-level items only (drawerLinks = nav.map,
   no children). With a seeded mega tree the drawer would otherwise render ~36
   rows. Hide the third level; a proper accordion is Phase 4 (mobile bars). */
.orchid-drawer__links ul.sub-menu ul.sub-menu { display: none; }

/* ---------------------------------------------------------------------------
   Footer image sizing. Neutralising the Bootstrap columns above removed the
   width cap that used to constrain widget images (payment-gateway logos render
   at natural size otherwise — BottomPaymentGatewayImage blew the bottom bar out
   to ~1400x2700px). Constrain them explicitly instead.
   --------------------------------------------------------------------------- */
.orchid-footer img {
  width: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}
.orchid-footer .payment-list,
.orchid-footer .footer-menu > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.orchid-footer .payment-list li { display: inline-flex; }
.orchid-footer .payment-list img { max-height: 26px; }
.orchid-footer .footer-logo img,
.orchid-footer .about_us_widget img { max-height: 40px; }

/* Bottom-bar children must be able to shrink, or a wide widget (the payment
   logo row) overflows the footer instead of wrapping. min-width:0 is the fix —
   flex items default to min-width:auto and refuse to shrink below content. */
.orchid-footer__bottom > * { min-width: 0; }
.orchid-footer__bottom .widget,
.orchid-footer__bottom .footer-inner,
.orchid-footer__bottom .footer-menu { min-width: 0; flex-wrap: wrap; }
.orchid-footer__bottom .payment-list { flex-wrap: wrap; row-gap: 8px; }
.orchid-footer { overflow-x: clip; }

/* ---------------------------------------------------------------------------
   Orchid footer widgets (component 19). Values transcribed from the design.
   These classes come from Widgets/Tenants/Aromatic/Footer*Widget.php.
   --------------------------------------------------------------------------- */
.orchid-footer .orchid-fw { display: flex; flex-direction: column; gap: 14px; min-width: 0; }

/* Column 1 — brand */
.orchid-fw--brand { gap: 16px; }
.orchid-fw__brand {
  font: 600 24px/1 var(--o-serif);
  color: var(--o-footer-heading);
}
.orchid-fw__about {
  margin: 0;
  max-width: 34ch;
  font: 400 14px/1.8 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .72);
}
.orchid-fw__social { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 4px; }
.orchid-fw__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--o-bd-on-ink);
  border-radius: 999px;
  color: var(--o-on-ink);
  font-size: 14px;
  transition: background .22s ease, color .22s ease;
}
.orchid-fw__social a:hover { background: var(--o-moss); color: var(--o-cream); }

/* Columns 2 & 3 — link lists */
.orchid-fw__kicker {
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-sage);
}
[dir="ltr"] .orchid-fw__kicker { letter-spacing: .22em; }

.orchid-fw__list { display: flex; flex-direction: column; gap: 14px; }
.orchid-fw__list a {
  font: 400 14px/1 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .78);
}
.orchid-fw__list a:hover { color: var(--o-cream); }
.orchid-fw__list ul.sub-menu { display: none; }   /* footer lists stay flat */

/* Column 4 — newsletter + payment chips */
.orchid-fw__body {
  margin: 0;
  font: 400 14px/1.7 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .72);
}
.orchid-fw__nl-form { display: flex; flex-direction: column; gap: 10px; }
.orchid-fw__nl-row { display: flex; border: 1px solid var(--o-bd-on-ink); }
.orchid-fw__nl-row input.email {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  background: transparent;
  font: 400 13px/1 var(--o-sans);
  color: var(--o-on-ink);
}
.orchid-fw__nl-row input.email::placeholder { color: rgba(var(--o-on-ink-rgb), .5); }
.orchid-fw__nl-row input.email:focus { outline: none; }
.orchid-fw__nl-row .newsletter-submit-btn {
  padding: 13px 20px;
  border: 0;
  background: var(--o-moss);
  color: var(--o-cream);
  font: 600 13px/1 var(--o-sans);
  white-space: nowrap;
  transition: background .22s ease, color .22s ease;
}
.orchid-fw__nl-row .newsletter-submit-btn:hover { background: var(--o-sage); color: var(--o-ink); }
.orchid-fw__nl-form .form-message-show:empty { display: none; }
.orchid-fw__nl-form .alert { padding: 8px 12px; font: 400 12px/1.4 var(--o-sans); }

.orchid-fw__pays { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 6px; }
.orchid-fw__pays span {
  padding: 6px 10px;
  border: 1px solid rgba(var(--o-on-ink-rgb), .2);
  font: 500 10px/1 var(--o-sans);
  color: rgba(var(--o-on-ink-rgb), .7);
}
[dir="ltr"] .orchid-fw__pays span { letter-spacing: .06em; }


/* ============================================================================
   ORCHID REDESIGN — PHASE 2: SHOP + PRODUCT
   Screens: isShop, isCat, isProduct, isCmp.  Widgets 23–29.
   Composes the Phase 1 atoms; only genuinely new measurements live here.

   Same rules as the base layer: logical properties only, radius 0/999px/50%,
   no new media query, explicit colour on every text element, and every tint
   derived from --o-ink-rgb so a tenant recolouring ink moves it too.
   ============================================================================ */

.orchid {
  /* Opacities Phase 2 introduces. Tokens for the same reason as the Phase 1
     border set: they are tinted ink, not literals. */
  --o-bd-tool:   rgba(var(--o-ink-rgb), .18);  /* toolbar + pager outlines */
  --o-bd-box:    rgba(var(--o-ink-rgb), .30);  /* filter checkbox */
  --o-bd-sec:    rgba(var(--o-ink-rgb), .12);  /* compare cell rules, cat divider */
  --o-scrim-cat: rgba(var(--o-ink-rgb), .55);  /* category hero */
  --o-cta-veil:  rgba(var(--o-ink-rgb), .90);  /* card add-to-cart bar */

  /* Per-section tenant tokens — same contract as Phase 1. Unset resolves to
     the shipped design, so an untouched shop still emits no <style> block. */
  --o-shop-bg:      var(--o-cream);
  --o-shop-text:    var(--o-ink);
  --o-shop-scale:   1;
  --o-pcard-bg:     transparent;
  --o-pcard-text:   var(--o-ink);
  --o-pdp-bg:       var(--o-cream);
  --o-pdp-text:     var(--o-ink);
  --o-pdp-scale:    1;
  --o-cathero-text: var(--o-cream);
}

/* ---------------------------------------------------------------------------
   Shop listing — Pattern C. The design's basis values are already the Phase 1
   atoms (.o-shell / .o-aside 246px / .o-content 999 1 62%), so only the
   padding and the rule between the panes are new here.
   --------------------------------------------------------------------------- */
.orchid-shop { background: var(--o-shop-bg); color: var(--o-shop-text); }
.orchid-shop__wrap { align-items: flex-start; }

.orchid-shop__aside {
  padding: clamp(16px, 2.64vw, 38px) clamp(13px, 2.22vw, 32px) clamp(25px, 4.17vw, 60px);
  border-inline-end: 1px solid var(--o-bd-divider);
  display: flex;
  flex-direction: column;
  gap: clamp(13px, 2.08vw, 30px);
}

.orchid-shop__main {
  padding: clamp(16px, 2.64vw, 38px) clamp(24px, 3.89vw, 56px) clamp(29px, 4.86vw, 70px);
}

/* Toolbar head: title + count on one side, sort + view toggle on the other. */
.orchid-shop__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(12px, 1.67vw, 24px);
  padding-block-end: 22px;
  border-block-end: 1px solid var(--o-bd-divider);
}
.orchid-shop__title {
  font: 300 clamp(20px, 2.50vw, 36px)/1.1 var(--o-serif);
  font-size: calc(clamp(20px, 2.50vw, 36px) * var(--o-shop-scale));
  letter-spacing: -.01em;
  color: var(--o-shop-text);
}
.orchid-shop__count {
  display: block;
  margin-block-start: 10px;
  font: 400 13px/1 var(--o-sans);
  color: var(--o-muted-2);
}
.orchid-shop__tools { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.orchid-shop__sortlabel { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }

/* View toggle — two 38px squares sharing one outline. */
.orchid-shop__views { display: flex; border: 1px solid var(--o-bd-tool); list-style: none; }
.orchid-shop__views a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--o-muted-2);
  transition: background .22s ease, color .22s ease;
}
.orchid-shop__views a .o-i { font-size: 19px; color: inherit; }
.orchid-shop__views a:hover { background: var(--o-cream-3); color: var(--o-ink); }
.orchid-shop__views .active a { background: var(--o-ink); color: var(--o-cream); }

/* Selected-filter chips row. The platform writes <li> into .selected-flex-list
   at runtime, so the chip skin has to sit on the list item itself. */
.orchid-shop__selected {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-block-end: 16px;
}
.orchid-shop__selected > span { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid-shop__selected .selected-clear-items { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.orchid-shop__selected .selected-flex-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.orchid-shop__selected .selected-flex-list li,
.orchid-filter__chips span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  background: var(--o-moss-bg);
  font: 500 11px/1 var(--o-sans);
  color: var(--o-moss);
}
.orchid-shop__selected .click-hide { cursor: pointer; color: var(--o-moss); }
.orchid-shop__selected .click-hide-parent { font: 400 12px/1 var(--o-sans); color: var(--o-terracotta); }

/* ---------------------------------------------------------------------------
   Filter sidebar — component 23
   --------------------------------------------------------------------------- */
.orchid-filter__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.orchid-filter__top > span { font: 500 12px/1 var(--o-sans); text-transform: uppercase; color: var(--o-ink); }
.orchid-filter__top a { font: 400 12px/1 var(--o-sans); color: var(--o-terracotta); }
[dir="ltr"] .orchid-filter__top > span { letter-spacing: .14em; }

.orchid-filter__chips { display: flex; flex-wrap: wrap; gap: 7px; }

/* The design's aside is a flex column with its own gap. Without it the sidebar
   stayed a plain block and every group's border-block-start hugged the last row
   above it — the divider read as underlining the price figures rather than
   floating between two groups. The gap is the space ABOVE each rule, the
   group's own padding the space below. */
.orchid .orchid-filter {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.67vw, 24px);
}
.orchid-filter__group {
  display: flex; flex-direction: column; gap: 13px;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--o-bd-divider);
}
.orchid-filter__group--first { padding-block-start: 0; border-block-start: 0; }
.orchid-filter__legend {
  font: 500 11px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-muted-2);
}
[dir="ltr"] .orchid-filter__legend { letter-spacing: .18em; }

/* Checkbox-style rows. The platform toggles .active on the <li>, so the box
   fill keys off that class rather than a real :checked input. */
.orchid-filter__list { display: flex; flex-direction: column; gap: 13px; list-style: none; }
.orchid-filter__list li > a,
.orchid-filter__list li > .cat-header {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font: 400 14px/1 var(--o-sans);
  color: var(--o-ink-2);
  transition: color .22s ease;
}
/* The design keeps every row label at ink-2 in EVERY state — checked, hovered
   or idle. Only the box changes. Hover darkens to ink so the row still answers
   the pointer without inventing a green the design never draws. */
.orchid-filter__list li > a:hover,
.orchid-filter__list li > .cat-header:hover { color: var(--o-ink); }
.orchid-filter__box {
  width: 16px; height: 16px;
  border: 1px solid var(--o-bd-box);
  display: flex; align-items: center; justify-content: center;
  font: 600 10px/1 var(--o-sans);
  color: var(--o-cream);
  flex: none;
}
.orchid-filter__list li.active > a > .orchid-filter__box,
.orchid-filter__list li.active > .cat-header .orchid-filter__box {
  /* Fill only. The design's checked box keeps the same 1px rgba(ink,.3) border
     as the unchecked one — recolouring it to moss thickened the row visually. */
  background: var(--o-moss);
}
.orchid-filter__list li.active > a > .orchid-filter__box::before,
.orchid-filter__list li.active > .cat-header .orchid-filter__box::before { content: '✓'; }
.orchid-filter__n {
  margin-inline-start: auto;
  font: 400 11px/1 var(--o-serif);
  color: var(--o-slash);
  direction: ltr;
  unicode-bidi: isolate;
}

/* Nested category tree — indent only, no second colour system. */
.orchid-filter__list .cat-children,
.orchid-filter__list .cat-grandchildren {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 13px;
  padding-block-start: 13px;
  padding-inline-start: 26px;
}
.orchid-filter__list .cat-parent.open > .cat-children,
.orchid-filter__list .cat-child.open > .cat-grandchildren { display: flex; }
.orchid-filter__list .cat-header .cat-name { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.orchid-filter__list .cat-toggle {
  display: inline-flex;
  color: var(--o-muted-2);
  transition: color .22s ease;
}
.orchid-filter__list .cat-toggle .o-i { font-size: 18px; color: inherit; }
.orchid-filter__list .cat-parent.open > .cat-header .cat-toggle,
.orchid-filter__list .cat-child.open > a .cat-toggle { color: var(--o-moss); }

/* Size / colour swatches keep the platform's <li class="list"> hooks. */
.orchid-filter__swatches { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.orchid-filter__swatches li a {
  display: flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding-inline: 10px;
  border: 1px solid var(--o-bd-input);
  font: 500 13px/1 var(--o-sans);
  color: var(--o-ink-2);
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.orchid-filter__swatches li a:hover { border-color: var(--o-ink); }
.orchid-filter__swatches li.active a { background: var(--o-ink); border-color: var(--o-ink); color: var(--o-cream); }
.orchid-filter__swatches--color li a { width: 38px; min-width: 38px; padding: 0; }
.orchid-filter__swatches--color li.active a { box-shadow: inset 0 0 0 2px var(--o-cream), 0 0 0 1px var(--o-moss); }

/* Rating rows: five glyphs; the filled ones are marked in PHP. */
.orchid-filter__rating { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.orchid-filter__rating li { display: flex; align-items: center; gap: 3px; cursor: pointer; }
.orchid-filter__rating li a { display: inline-flex; }
.orchid-filter__rating .o-i { font-size: 17px; color: var(--o-terracotta); transition: color .22s ease; }
.orchid-filter__rating .o-i.is-off { color: var(--o-bd-box); }
.orchid-filter__rating li.active .o-i.is-off,
.orchid-filter__rating li:hover .o-i.is-off { color: var(--o-bd-input); }

/* Price slider — the design's 3px track, skinned onto noUiSlider so the
   platform's noUiSlider.create() call keeps working untouched. */
.orchid-filter__price { display: flex; flex-direction: column; gap: 14px; }
.orchid-filter .ui-range-slider,
.orchid-filter .noUi-target {
  position: relative;
  height: 3px;
  margin-block: 8px;
  background: var(--o-bd-card);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.orchid-filter .noUi-connect { background: var(--o-moss); }
.orchid-filter .noUi-handle {
  width: 15px; height: 15px;
  inset-block-start: -6px;
  border-radius: 50%;
  background: var(--o-cream);
  border: 2px solid var(--o-moss);
  box-shadow: none;
  cursor: pointer;
}
.orchid-filter .noUi-handle::before,
.orchid-filter .noUi-handle::after { display: none; }
.orchid-filter__prices { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.orchid-filter__prices > div,
.orchid-filter__prices .ui-range-value-min,
.orchid-filter__prices .ui-range-value-max {
  font: 500 13px/1 var(--o-serif);
  color: var(--o-ink);
  direction: ltr;
  unicode-bidi: isolate;
}

/* Sidebar promo — the design's closing block of the aside: a 240px image under
   a flat ink scrim, title and cta pinned to the bottom. */
.orchid-filter__promo {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  margin-block-start: 6px;
  background: var(--o-cream-3);
}
.orchid-filter__promo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orchid-filter__promo-scrim {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  padding: 20px;
  background: rgba(var(--o-ink-rgb), .42);
}
.orchid-filter__promo-title { font: 300 22px/1.25 var(--o-serif); color: var(--o-cream); }
.orchid-filter__promo-cta { font: 500 12px/1 var(--o-sans); color: var(--o-sage-light); }

.orchid-shop__filter-toggle { display: none; }

/* ---------------------------------------------------------------------------
   Product card — one source for listing, category, related, search, and the
   AJAX-swapped grid. Pattern A density is set by the grid, never by the card.
   --------------------------------------------------------------------------- */
.orchid-pgrid { padding-block-start: 32px; gap: clamp(12px, 1.81vw, 26px); }

.orchid-pcard {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--o-pcard-bg);
  color: var(--o-pcard-text);
}
.orchid-pcard__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--o-cream-3);
}
/* :not() excludes the CTA, which is ALSO a direct <a> child of the media box.
   Without it the add-to-cart bar inherited height:100% and covered the whole
   card in a 90%-opaque ink veil. */
.orchid-pcard__media > a:not(.orchid-pcard__cta) { display: block; width: 100%; height: 100%; }
.orchid-pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.orchid-pcard:hover .orchid-pcard__media img { transform: scale(1.07); }

.orchid-pcard__badges {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 2;
}
.orchid-pcard__badge {
  padding: 5px 10px;
  background: var(--o-ink);
  color: var(--o-cream);
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
}
.orchid-pcard__badge--sale { background: var(--o-badge-sale-bg); color: var(--o-badge-sale-text); }
[dir="ltr"] .orchid-pcard__badge { letter-spacing: .12em; }

/* Hover action rail. Three actions where the design draws two: quick view is a
   real platform feature and dropping it would be a regression. Same 32px
   treatment and same stack, so no measured value changes. */
.orchid-pcard__acts {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  list-style: none;
}
.orchid-pcard__acts a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(251, 249, 243, .94);
  color: var(--o-ink);
  transition: background .22s ease, color .22s ease;
}
.orchid-pcard__acts a .o-i { font-size: 17px; color: inherit; }
.orchid-pcard__acts a:hover { background: var(--o-moss); color: var(--o-cream); }

.orchid-pcard__cta {
  position: absolute;
  inset-block-end: 12px;
  inset-inline: 12px;
  padding: 12px;
  border: 0;
  background: var(--o-cta-veil);
  color: var(--o-cream);
  font: 600 13px/1 var(--o-sans);
  text-align: center;
  z-index: 2;
  transition: background .22s ease;
}
.orchid-pcard__cta:hover { background: var(--o-moss); color: var(--o-cream); }

.orchid-pcard__family {
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-muted-2);
}
[dir="ltr"] .orchid-pcard__family { letter-spacing: .2em; }
.orchid-pcard__name { font: 500 16px/1.35 var(--o-sans); color: var(--o-pcard-text); }
.orchid-pcard__name a { color: inherit; }
.orchid-pcard__name a:hover { color: var(--o-moss); }
.orchid-pcard__notes { font: 400 12px/1.5 var(--o-sans); color: var(--o-muted-2); }
.orchid-pcard__prices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.orchid-pcard__price {
  font: 500 17px/1 var(--o-serif);
  color: var(--o-pcard-text);
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}
.orchid-pcard__was {
  font: 400 13px/1 var(--o-serif);
  color: var(--o-terracotta);
  text-decoration: line-through;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}
/* The platform's star helper markup, retinted. Structure stays the helper's. */
.orchid-pcard .rating-wrap,
.orchid-plist .rating-wrap { display: flex; align-items: center; gap: 8px; }
.orchid-pcard .total-ratings,
.orchid-plist .total-ratings { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid-pcard .ratings,
.orchid-plist .ratings { color: var(--o-terracotta); }

/* List view. Not drawn in the design — composed from the same atoms so both
   views read as one system. Pattern B row, image beside copy. */
.orchid-plist { display: flex; flex-direction: column; gap: clamp(12px, 1.81vw, 26px); }
.orchid-plist__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(15px, 2.50vw, 36px);
  padding-block-end: clamp(15px, 2.50vw, 36px);
  border-block-end: 1px solid var(--o-bd-divider);
}
.orchid-plist__media {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 380px;
  overflow: hidden;
  background: var(--o-cream-3) center/cover no-repeat;
}
.orchid-plist__body { display: flex; flex-direction: column; gap: 13px; justify-content: center; }
.orchid-plist__name { font: 400 clamp(17px, 1.53vw, 22px)/1.35 var(--o-serif); color: var(--o-ink); }
.orchid-plist__name a { color: inherit; }
.orchid-plist__name a:hover { color: var(--o-moss); }
.orchid-plist__acts { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.orchid-plist__acts .btn-wrapper { flex: 1 1 180px; min-width: 0; }
.orchid-plist__acts .btn-wrapper > a { width: 100%; }
.orchid-plist__acts .icon-list > a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--o-bd-cta);
  color: var(--o-ink);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid-plist__acts .icon-list > a .o-i { font-size: 19px; color: inherit; }
.orchid-plist__acts .icon-list > a:hover { background: var(--o-moss); border-color: var(--o-moss); color: var(--o-cream); }

/* ---------------------------------------------------------------------------
   Pager — component 24, lower row. The markup stays the platform's
   .pagination-list > li > a.page-number.current; only the skin is new.
   --------------------------------------------------------------------------- */
.orchid-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-block-start: 48px;
  padding-block-start: 26px;
  border-block-start: 1px solid var(--o-bd-divider);
}
.orchid-pager__label { font: 400 13px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid-pager .pagination-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.orchid-pager .pagination-list a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--o-bd-tool);
  font: 500 13px/1 var(--o-serif);
  color: var(--o-ink);
  direction: ltr;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid-pager .pagination-list a:hover { background: var(--o-cream-3); color: var(--o-ink); }
.orchid-pager .pagination-list a.current {
  background: var(--o-ink);
  border-color: var(--o-ink);
  color: var(--o-cream);
}
.orchid-pager .pagination-list a .o-i { font-size: 20px; color: inherit; }

/* ---------------------------------------------------------------------------
   Category hero — component 25
   --------------------------------------------------------------------------- */
.orchid-cathero {
  position: relative;
  height: clamp(211px, 23.61vw, 340px);
  overflow: hidden;
  background: var(--o-cream-3);
}
.orchid-cathero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.orchid-cathero__scrim { position: absolute; inset: 0; background: var(--o-scrim-cat); }
.orchid-cathero__body {
  position: absolute; inset: 0;
  padding-inline: clamp(24px, 3.89vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
}
.orchid-cathero__title {
  font: 300 clamp(29px, 3.61vw, 52px)/1.05 var(--o-serif);
  letter-spacing: -.02em;
  color: var(--o-cathero-text);
}
.orchid-cathero__body p {
  max-width: 56ch;
  font: 400 15px/1.8 var(--o-sans);
  color: rgba(251, 249, 243, .8);
}
/* Flat variant when the category has no image to hero. */
.orchid-cathero--flat { background: var(--o-ink); }
.orchid-cathero--flat .orchid-cathero__scrim { background: transparent; }

.orchid-cat__bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding-block-end: 24px;
  border-block-end: 1px solid var(--o-bd-sec);
}
.orchid-cat__subs { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   PDP — components 26–28. The buy box keeps the platform's DOM verbatim: the
   variant selector, price node and stock nodes are a JS contract shared with
   quick view, so everything below restyles by the existing class names.
   --------------------------------------------------------------------------- */
.orchid-pdp { background: var(--o-pdp-bg); color: var(--o-pdp-text); }

.orchid-pdp__top {
  padding: clamp(18px, 3.06vw, 44px) clamp(24px, 3.89vw, 56px) clamp(25px, 4.17vw, 60px);
  border-block-end: 1px solid var(--o-bd-divider);
}
.orchid-pdp__gallery { display: flex; flex-direction: column; gap: 14px; }
.orchid-pdp__main {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--o-cream-3);
}
.orchid-pdp__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.orchid-pdp__main:hover img { transform: scale(1.12); }
.orchid-pdp__thumbs { gap: 12px; }
.orchid-pdp__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--o-cream-3) center/cover no-repeat;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .22s ease;
}
.orchid-pdp__thumb:hover,
.orchid-pdp__thumb.is-active { border-color: var(--o-moss); }

/* Buy box column */
.orchid-pdp__buy .single-shop-details-wrapper { display: flex; flex-direction: column; gap: 20px; padding-block-start: 6px; }
.orchid-pdp__buy .details-title {
  font: 300 clamp(25px, 3.19vw, 46px)/1.1 var(--o-serif);
  font-size: calc(clamp(25px, 3.19vw, 46px) * var(--o-pdp-scale));
  letter-spacing: -.02em;
  color: var(--o-pdp-text);
}
.orchid-pdp__buy .name_badge { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.orchid-pdp__buy .wishlist-compare-btn { display: flex; gap: 8px; }
.orchid-pdp__buy .wishlist-compare-btn a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--o-bd-cta);
  color: var(--o-ink);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid-pdp__buy .wishlist-compare-btn a:hover { background: var(--o-moss); border-color: var(--o-moss); color: var(--o-cream); }
.orchid-pdp__buy .wishlist-compare-btn a i,
.orchid-pdp__buy .wishlist-compare-btn a .o-i { font-size: 20px; color: inherit; }
.orchid-pdp__summary { max-width: 52ch; font: 400 15px/1.85 var(--o-sans); color: var(--o-ink-3); }

.orchid-pdp__buy .price-update-through { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.orchid-pdp__buy .flash-prices {
  font: 400 clamp(19px, 2.36vw, 34px)/1 var(--o-serif);
  color: var(--o-pdp-text);
  direction: ltr;
  unicode-bidi: isolate;
}
.orchid-pdp__buy .flash-old-prices {
  font: 400 18px/1 var(--o-serif);
  color: var(--o-terracotta);
  text-decoration: line-through;
  direction: ltr;
  unicode-bidi: isolate;
}

/* Variant pickers — the <ul class="size-lists"> DOM is the shared JS contract. */
.orchid-pdp__buy .value-input-area { display: flex; flex-direction: column; gap: 11px; }
.orchid-pdp__buy .single-input-list { align-items: flex-start !important; justify-content: flex-start !important; }
.orchid-pdp__buy .input-title {
  display: flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-muted-2);
}
[dir="ltr"] .orchid-pdp__buy .input-title { letter-spacing: .18em; }
.orchid-pdp__buy .input-title strong { font-weight: 500; color: var(--o-muted-2); }
.orchid-pdp__buy .input-title .value-size {
  border: 0; background: transparent; width: auto; max-width: 14ch; padding: 0;
  font: 500 12px/1 var(--o-sans); color: var(--o-ink);
}
.orchid-pdp__buy .size-lists { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.orchid-pdp__buy .size-lists li {
  padding: 13px clamp(12px, 1.67vw, 24px);
  border: 1px solid var(--o-bd-input);
  background: transparent;
  color: var(--o-ink);
  font: 500 14px/1 var(--o-sans);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.orchid-pdp__buy .size-lists li:hover { border-color: var(--o-ink); }
.orchid-pdp__buy .size-lists li.active {
  background: var(--o-ink);
  border-color: var(--o-ink);
  color: var(--o-cream);
}
.orchid-pdp__buy .color-list li { width: 38px; height: 38px; padding: 0; }
.orchid-pdp__buy .color-list li.active { box-shadow: inset 0 0 0 2px var(--o-cream), 0 0 0 1px var(--o-moss); }
.orchid-pdp__buy .size-lists li.disabled,
.orchid-pdp__buy .size-lists li[disabled] { opacity: .35; cursor: not-allowed; }

/* Quantity stepper + action row. 52px is the design's control height. */
.orchid-pdp__buy .quantity-area { display: flex; flex-direction: column; gap: 14px; }
.orchid-pdp__buy .quantity-flex { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.orchid-pdp__buy .quantity-title { font: 500 11px/1 var(--o-sans); text-transform: uppercase; color: var(--o-muted-2); }
[dir="ltr"] .orchid-pdp__buy .quantity-title { letter-spacing: .18em; }
.orchid-pdp__buy .product-quantity { display: flex; align-items: center; border: 1px solid var(--o-bd-cta); }
.orchid-pdp__buy .product-quantity .plus,
.orchid-pdp__buy .product-quantity .substract {
  width: 46px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--o-ink);
  transition: background .22s ease;
}
.orchid-pdp__buy .product-quantity .plus:hover,
.orchid-pdp__buy .product-quantity .substract:hover { background: var(--o-cream-3); }
.orchid-pdp__buy .product-quantity .quantity-input {
  width: 46px; height: 52px;
  border: 0; background: transparent;
  text-align: center;
  font: 500 16px/1 var(--o-serif);
  color: var(--o-ink);
  -moz-appearance: textfield;
}
.orchid-pdp__buy .product-quantity .quantity-input::-webkit-outer-spin-button,
.orchid-pdp__buy .product-quantity .quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.orchid-pdp__buy .quantity-btn { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.orchid-pdp__buy .quantity-btn .btn-wrapper { flex: 1 1 200px; min-width: 0; }
.orchid-pdp__buy .quantity-btn .btn-wrapper a,
.orchid-pdp__buy .quantity-btn .notify_me_btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 52px;
  border: 0;
  background: var(--o-btn-bg);
  color: var(--o-btn-text);
  font: 600 14px/1 var(--o-sans);
  transition: background .22s ease, color .22s ease;
}
.orchid-pdp__buy .quantity-btn .btn-wrapper a:hover,
.orchid-pdp__buy .quantity-btn .notify_me_btn:hover { background: var(--o-btn-hover-bg); color: var(--o-btn-text); }
/* Second action is the outlined "Buy now". */
.orchid-pdp__buy .quantity-btn .btn-wrapper:nth-child(2) a {
  background: transparent;
  border: 1px solid var(--o-bd-cta);
  color: var(--o-ink);
  font-weight: 500;
}
.orchid-pdp__buy .quantity-btn .btn-wrapper:nth-child(2) a:hover { background: var(--o-cream-3); color: var(--o-ink); }

/* The old buy box's `.status-details`, `.specification-table`,
   `.shop-details-stock`, `.stock-category` and `.delivery-options` rules lived
   here. That DOM is gone — the stock line, the shipping stack and the scent
   pyramid tab replaced it — so the rules went with it. */
.orchid-pdp__buy .details-checkout-shop { display: flex; flex-direction: column; gap: 10px; padding-block-start: 6px; background: var(--o-cream); }
.orchid-pdp__buy .guaranteed-checkout { font: 500 11px/1 var(--o-sans); text-transform: uppercase; color: var(--o-muted-2); }
[dir="ltr"] .orchid-pdp__buy .guaranteed-checkout { letter-spacing: .18em; }
.orchid-pdp__buy .payment-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.orchid-pdp__buy .payment-list img { height: 22px; width: auto; }
.orchid-pdp__buy .wishlist-share ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.orchid-pdp__buy .wishlist-share a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--o-bd-icon);
  color: var(--o-ink);
  transition: background .22s ease, color .22s ease;
}
.orchid-pdp__buy .wishlist-share a:hover { background: var(--o-moss); color: var(--o-cream); }

/* Tabs — component 28 */
.orchid-pdp__tabs { padding-inline: clamp(24px, 3.89vw, 56px); border-block-end: 1px solid var(--o-bd-divider); }
.orchid-pdp__tabnav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.36vw, 34px);
  border-block-end: 1px solid var(--o-bd-divider);
  list-style: none;
}
.orchid-pdp__tabnav li {
  padding-block: 20px;
  border-block-end: 2px solid transparent;
  color: var(--o-muted-2);
  font: 500 14px/1 var(--o-sans);
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}
.orchid-pdp__tabnav li:hover { color: var(--o-ink); }
.orchid-pdp__tabnav li.active { color: var(--o-ink); border-block-end-color: var(--o-ink); }
.orchid-pdp__tabbody { padding-block: clamp(17px, 2.78vw, 40px) clamp(24px, 3.89vw, 56px); }
.orchid-pdp__tabbody > .tab-content-item { display: none; }
.orchid-pdp__tabbody > .tab-content-item.active { display: block; }
.orchid-pdp__prose { max-width: 78ch; font: 400 16px/1.95 var(--o-sans); color: var(--o-ink-2); }
.orchid-pdp__prose p,
.orchid-pdp__prose li { font: 400 16px/1.95 var(--o-sans); color: var(--o-ink-2); }
.orchid-pdp__prose ul,
.orchid-pdp__prose ol { padding-inline-start: 20px; list-style: disc; }

/* Ship & return: the design's hairline key/value stack. */
.orchid-pdp__kv { display: flex; flex-direction: column; gap: 1px; max-width: 760px; background: var(--o-bd-divider); }
.orchid-pdp__kv > div {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px;
  padding: 18px 2px;
  background: var(--o-cream);
}
.orchid-pdp__kv dt,
.orchid-pdp__kv > div > span:first-child { min-width: 180px; font: 500 14px/1.4 var(--o-sans); color: var(--o-ink); }
.orchid-pdp__kv dd,
.orchid-pdp__kv > div > span:last-child { font: 400 14px/1.6 var(--o-sans); color: var(--o-muted-2); }

/* Review cards — Pattern A, N=320. */
.orchid-review {
  padding: clamp(12px, 1.81vw, 26px);
  border: 1px solid var(--o-bd-card);
  display: flex; flex-direction: column; gap: 14px;
}
.orchid-review__stars { font: 400 13px/1 var(--o-sans); color: var(--o-terracotta); }
[dir="ltr"] .orchid-review__stars { letter-spacing: .2em; }
.orchid-review p { font: 400 15px/1.85 var(--o-sans); color: var(--o-ink-2); }
.orchid-review__who { font: 500 13px/1 var(--o-sans); color: var(--o-ink); }
.orchid-review__when { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid-review__form { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.orchid-review__form textarea { min-height: 130px; resize: vertical; }

.orchid-pdp__related { padding: clamp(27px, 4.44vw, 64px) clamp(24px, 3.89vw, 56px) clamp(29px, 4.86vw, 70px); }
.orchid-pdp__related h2 { margin-block-end: 32px; font: 300 clamp(18px, 2.22vw, 32px)/1.1 var(--o-serif); color: var(--o-ink); }
.orchid-pdp__related .o-grid { gap: 22px; }

/* ---------------------------------------------------------------------------
   Compare — component 29. Column count is data-driven, so the design's
   repeat(3,1fr) becomes a custom property the blade sets.
   --------------------------------------------------------------------------- */
.orchid-cmp__scroll { overflow-x: auto; margin-block-start: 36px; }
.orchid-cmp {
  display: grid;
  grid-template-columns: 180px repeat(var(--o-cmp-cols, 3), minmax(200px, 1fr));
  min-width: 760px;
  border: 1px solid var(--o-bd-card);
}
.orchid-cmp__corner,
.orchid-cmp__head {
  padding: clamp(12px, 1.81vw, 26px) clamp(12px, 1.67vw, 24px);
  background: var(--o-cream-2);
  border-inline-end: 1px solid var(--o-bd-sec);
}
.orchid-cmp__corner { padding-inline: 22px; }
.orchid-cmp__head { display: flex; flex-direction: column; gap: 14px; }
.orchid-cmp__media { aspect-ratio: 4/5; overflow: hidden; background: var(--o-cream-3); }
.orchid-cmp__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orchid-cmp__name { font: 500 17px/1.3 var(--o-sans); color: var(--o-ink); }
.orchid-cmp__name a { color: inherit; }
.orchid-cmp__row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 180px repeat(var(--o-cmp-cols, 3), minmax(200px, 1fr));
  border-block-start: 1px solid var(--o-bd-sec);
}
.orchid-cmp__label {
  padding: 18px 22px;
  font: 500 12px/1.4 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-muted-2);
  background: var(--o-cream-2);
  border-inline-end: 1px solid var(--o-bd-sec);
}
[dir="ltr"] .orchid-cmp__label { letter-spacing: .1em; }
.orchid-cmp__cell {
  padding: 18px clamp(12px, 1.67vw, 24px);
  font: 400 14px/1.5 var(--o-sans);
  color: var(--o-ink);
  border-inline-end: 1px solid var(--o-bd-sec);
}
.orchid-cmp__cell ul { list-style: none; }
.orchid-cmp__remove { font: 500 12px/1 var(--o-sans); color: var(--o-terracotta); cursor: pointer; }

/* Empty states — shop, category, compare and search all land here. */
.orchid-empty {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding-block: clamp(29px, 4.86vw, 70px);
  text-align: center;
}
.orchid-empty .o-i { font-size: 40px; color: var(--o-sage); }
.orchid-empty h3 { font: 400 clamp(17px, 1.53vw, 22px)/1.35 var(--o-serif); color: var(--o-ink); }
.orchid-empty p { font: 400 15px/1.8 var(--o-sans); color: var(--o-muted-2); }

/* ---------------------------------------------------------------------------
   The 760px structure swap — the theme's ONE media query, already declared for
   the header. Phase 2 adds only the filter collapse, which is a structure
   change (trigger instead of panel), not a scale.
   --------------------------------------------------------------------------- */
@media (max-width: 759.98px) {
  /* Mobile sticky buy bar — see the base rule near the end of this file.
     It stands ON TOP of the platform's own .mobile-nav, which is position:fixed
     bottom:0 z-index:99 from 300px to 991.98px — at inset-block-end:0 the bar
     rendered underneath it and was invisible. The design draws the same stack
     and offsets by 62px; --o-mobilenav-h is written by the PDP's own script
     from the nav's measured height, so a taller nav still can't cover it. */
  .orchid .orchid-pdp__sticky {
    position: fixed;
    inset-block-end: var(--o-mobilenav-h, 62px);
    inset-inline: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--o-cream);
    border-block-start: 1px solid var(--o-bd-divider);
  }
  .orchid-pdp__sticky-info { display: flex; flex-direction: column; gap: 3px; }
  .orchid-pdp__sticky-name { font: 400 10px/1 var(--o-sans); color: var(--o-muted-2); }
  .orchid-pdp__sticky-price {
    font: 500 17px/1 var(--o-serif);
    color: var(--o-ink);
    white-space: nowrap;
    direction: ltr;
    unicode-bidi: isolate;
  }
  .orchid .orchid-pdp__sticky-cta {
    flex: 1;
    padding: 16px;
    border: 0;
    border-radius: 0;
    background: var(--o-btn-bg);
    color: var(--o-btn-text);
    font: 600 14px/1 var(--o-sans);
    transition: background .22s ease;
  }
  .orchid .orchid-pdp__sticky-cta:hover { background: var(--o-btn-hover-bg); }
  /* Clear the bar AND the nav under it, so neither covers the last block. */
  .orchid-pdp { padding-block-end: calc(84px + var(--o-mobilenav-h, 62px)); }

  .orchid-shop__aside {
    border-inline-end: 0;
    border-block-end: 1px solid var(--o-bd-divider);
    padding-block-end: clamp(13px, 2.08vw, 30px);
  }
  .orchid-shop__filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--o-bd-input);
    background: transparent;
    color: var(--o-ink);
    font: 500 13px/1 var(--o-sans);
  }
  .orchid-shop__filter-toggle .o-i { font-size: 20px; color: inherit; }
  .orchid-shop__panel { display: none; flex-direction: column; gap: clamp(13px, 2.08vw, 30px); }
  .orchid-shop__panel.is-open { display: flex; }
}

/* ---------------------------------------------------------------------------
   Sort control. main.js runs $('#nice-select').niceSelect(), which replaces the
   <select> with .nice-select > .current + ul.list > li.option — and li.option
   is exactly what the sort handler binds to, so the plugin has to stay. Only
   the skin is ours; the design's box is 11px/16px with a .18 outline.
   --------------------------------------------------------------------------- */
.orchid .shop-nice-select .nice-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: auto;
  padding: 11px 16px;
  border: 1px solid var(--o-bd-tool);
  border-radius: 0;
  background: transparent;
  font: 500 13px/1 var(--o-sans);
  color: var(--o-ink);
  cursor: pointer;
  transition: border-color .22s ease;
}
.orchid .shop-nice-select .nice-select:hover { border-color: var(--o-ink); }

/* The plugin draws its caret as a rotated ::after border box. Replace it with
   the design's expand_more glyph rather than fighting the transform. */
.orchid .shop-nice-select .nice-select::after {
  content: 'expand_more';
  position: static;
  width: auto; height: auto;
  margin: 0;
  border: 0;
  transform: none;
  font-family: 'Material Symbols Outlined';
  font-weight: 300;
  font-size: 17px;
  line-height: 1;
  font-variation-settings: 'opsz' 24;
  color: var(--o-muted-2);
}
.orchid .shop-nice-select .nice-select.open::after { content: 'expand_less'; }

.orchid .shop-nice-select .nice-select .list {
  position: absolute;
  inset-block-start: calc(100% + 4px);
  inset-inline-start: 0;
  z-index: 30;
  min-width: 100%;
  margin: 0;
  padding: 6px 0;
  border: 1px solid var(--o-bd-card);
  border-radius: 0;
  background: var(--o-cream);
  box-shadow: var(--o-shadow-mega);
  list-style: none;
}
.orchid .shop-nice-select .nice-select .option {
  min-height: 0;
  padding: 10px 16px;
  font: 400 13px/1.4 var(--o-sans);
  color: var(--o-ink-2);
  white-space: nowrap;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}
.orchid .shop-nice-select .nice-select .option:hover,
.orchid .shop-nice-select .nice-select .option.focus,
.orchid .shop-nice-select .nice-select .option.selected.focus { background: var(--o-cream-3); color: var(--o-ink); }
.orchid .shop-nice-select .nice-select .option.selected { font-weight: 500; color: var(--o-ink); }

/* ---------------------------------------------------------------------------
   Star helpers. render_product_star_rating_markup_with_count() and
   render_star_rating_markup() emit the platform's own markup; retint it so the
   cards do not inherit a stray vendor gold.
   --------------------------------------------------------------------------- */
.orchid .ratings i,
.orchid .ratings .las,
.orchid .ratings .lar { color: var(--o-terracotta); font-size: 14px; }
.orchid .rating-wrap p { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid .orchid-review__stars i { color: var(--o-terracotta); font-size: 14px; }

/* ---------------------------------------------------------------------------
   Legacy neutralisation for the hooks Phase 2 deliberately KEPT.

   Retaining a platform class name also retains every pre-Orchid rule aimed at
   it, and those rules are inside .orchid where the base layer cannot see them.
   Each block below is a measured conflict, not a precaution.
   --------------------------------------------------------------------------- */

/* 1. Grid/list panes. `.tab-content-item { display:none }` lives in
      assets/tenant/frontend/css/{common,shop-common}.css — and aromatic's
      theme.json sets "common": false, so the shop page's toggle depended on
      whichever OTHER core sheet happened to load. Own it here instead. */
.orchid .tab-content-item { display: none; }
.orchid .tab-content-item.active { display: block; }

/* 2. Pager. Three separate legacy conflicts:
      - `.pagination-list::before/::after` inject two empty bordered, shadowed
        Line-Awesome boxes into the list;
      - `.pagination-list li { margin: 5px 10px }` stacks on top of our gap;
      - `.pagination-list li a { border-radius: 5px }` is (0,1,2), which BEATS
        the base layer's `.orchid :where(...)` square reset — :where() adds no
        specificity, so element count breaks the tie. This is the rounded-corner
        leak the design brief calls the fastest tell. */
.orchid .orchid-pager .pagination-list::before,
.orchid .orchid-pager .pagination-list::after { content: none; display: none; }
.orchid .orchid-pager .pagination-list { justify-content: flex-start; padding: 0; }
.orchid .orchid-pager .pagination-list li { margin: 0; }
.orchid .orchid-pager .pagination-list a {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.orchid .orchid-pager .pagination-list a.current {
  background: var(--o-ink);
  color: var(--o-cream);
}
.orchid .orchid-pager .pagination-list a:hover { background: var(--o-cream-3); color: var(--o-ink); }

/* 3. Sort control. The legacy sheet pins `.shop-nice-select .nice-select` to
      height/line-height 48px with a physical padding pair; our (0,3,0) chain
      already outranks it, but the list needs the radius killed for the same
      :where() reason as the pager. */
.orchid .shop-nice-select .nice-select,
.orchid .shop-nice-select .nice-select .list,
.orchid .shop-nice-select .nice-select .option { border-radius: 0; }

/* ============================================================================
   ORCHID REDESIGN — PHASE 2d: SHOP + PDP DESIGN CORRECTIONS
   Written after a line-by-line re-read of isShop / isProduct in
   Orchid Storefront.dc.html and components 23–28 in Orchid Widgets.dc.html.

   This layer follows the Phase 2 block, so it wins ties on order alone; nothing
   here relies on that except where a comment says so. Same rules as always:
   logical properties, radius 0/999px/50%, no new media query.
   ============================================================================ */

/* The pulsing stock dot was specified in Phase 2 but its keyframes were never
   written, so the animation silently did nothing. */
@keyframes orchid-pulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%      { opacity: .45; transform: scale(.82); }
}

/* ---------------------------------------------------------------------------
   Pager — the design's third element: an outlined "Load More" on the end side.
   --------------------------------------------------------------------------- */
.orchid-pager__more {
  padding: 13px clamp(12px, 1.81vw, 26px);
  border: 1px solid var(--o-bd-cta);
  background: transparent;
  color: var(--o-ink);
  font: 500 13px/1 var(--o-sans);
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}
.orchid-pager__more:hover { background: var(--o-ink); color: var(--o-cream); }
.orchid-pager__more[disabled] { opacity: .5; cursor: default; }
.orchid-pager__spacer { display: block; }

/* ---------------------------------------------------------------------------
   PDP buy box — rebuilt DOM, design order.
   --------------------------------------------------------------------------- */

/* The wrapper's own gap is 20px in the design; the variant stack and the
   action row carry their own internal rhythm. */
.orchid-pdp__buy .single-shop-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block-start: 6px;
}

.orchid-pdp__kicker {
  font: 500 11px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-moss);
}
[dir="ltr"] .orchid-pdp__kicker { letter-spacing: .24em; }
.orchid-pdp__kicker a { color: inherit; }
.orchid-pdp__kicker a:hover { color: var(--o-ink); }

.orchid-pdp__buy h1.details-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font: 300 clamp(25px, 3.19vw, 46px)/1.1 var(--o-serif);
  font-size: calc(clamp(25px, 3.19vw, 46px) * var(--o-pdp-scale));
  letter-spacing: -.02em;
  color: var(--o-pdp-text);
}
.orchid-pdp__badge {
  padding: 5px 10px;
  background: var(--o-ink);
  color: var(--o-cream);
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
}
[dir="ltr"] .orchid-pdp__badge { letter-spacing: .12em; }

/* Rating row: stars · value · review count · hairline · SKU, all on one line. */
.orchid-pdp__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.orchid-pdp__meta .rating-wrap,
.orchid-pdp__meta .ratings { display: flex; align-items: center; gap: 8px; }
.orchid-pdp__meta .ratings i { font-size: 15px; color: var(--o-terracotta); }
.orchid-pdp__meta .rating-wrap p,
.orchid-pdp__meta .total-ratings { font: 400 13px/1 var(--o-sans); color: var(--o-muted-2); }
.orchid-pdp__meta-rule { width: 1px; height: 14px; background: var(--o-bd-tool); flex: none; }
.orchid-pdp__sku { font: 400 12px/1 var(--o-sans); color: var(--o-muted-2); }

.orchid-pdp__buy .price-update-through { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.orchid-pdp__buy h3.flash-prices {
  font: 400 clamp(19px, 2.36vw, 34px)/1 var(--o-serif);
  color: var(--o-pdp-text);
  direction: ltr;
  unicode-bidi: isolate;
}

.orchid-pdp__buy p.orchid-pdp__summary {
  max-width: 52ch;
  font: 400 15px/1.85 var(--o-sans);
  color: var(--o-ink-3);
}

/* Variant groups. One column of label + chips per attribute. */
.orchid-pdp__variants { display: flex; flex-direction: column; gap: 16px; }
.orchid-pdp__variants:empty { display: none; }
.orchid-pdp__buy .value-input-area { display: flex; flex-direction: column; gap: 11px; }

/* Action row — the design's stepper · Add · Buy · favourite · compare, one line
   that wraps on its own. `.quantity-area` is a platform class the Phase 2 layer
   set to a column, so this overrides it for the action row specifically. */
.orchid-pdp__buy .quantity-area.orchid-pdp__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block-start: 6px;
}
.orchid-pdp__actions .quantity-btn { flex: 1 1 260px; min-width: 0; }
.orchid-pdp__actions .quantity-btn .btn-wrapper { flex: 1 1 140px; }
.orchid-pdp__actions .quantity-btn .btn-wrapper--primary { flex: 2 1 180px; }
.orchid-pdp__actions .quantity-btn .btn-wrapper a,
.orchid-pdp__actions .quantity-btn .notify_me_btn { height: 52px; padding-block: 0; }

.orchid-pdp__icons { display: flex; align-items: center; gap: 12px; }
.orchid-pdp__icons a {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--o-bd-cta);
  color: var(--o-ink);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.orchid-pdp__icons a .o-i { font-size: 20px; color: inherit; }
.orchid-pdp__icons a:hover { background: var(--o-moss); border-color: var(--o-moss); color: var(--o-cream); }

/* Stock line — dot, then the two nodes syncStock() rewrites. */
.orchid-pdp__stock { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.orchid-pdp__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--o-moss);
  flex: none;
  animation: orchid-pulse 1.8s ease-in-out infinite;
}
.orchid-pdp__stock .status-details-title { font: 500 13px/1 var(--o-sans); color: var(--o-moss); }
.orchid-pdp__stock .text-success { color: var(--o-moss); }
.orchid-pdp__stock .text-danger { color: var(--o-terracotta); }
.orchid-pdp__stock .stock-available { font: 400 13px/1.5 var(--o-sans); color: var(--o-muted-2); }
.orchid-pdp__stock .stock-available.text-danger { color: var(--o-terracotta); }
/* syncStock() injects a Bootstrap button into #item_left when a variant is out
   of stock. Square it and put it back on the palette. */
.orchid-pdp__stock .notify_me_btn {
  margin-block-start: 8px;
  padding: 10px 18px !important;
  border: 1px solid var(--o-bd-cta) !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--o-ink);
  font: 500 13px/1 var(--o-sans);
}

/* Shipping key/value stack inside the buy box: 13px, 170px key column. */
.orchid-pdp__buy .orchid-pdp__kv { max-width: none; margin-block-start: 4px; }
/* Three classes so this beats the ship-tab stack's `.orchid-pdp__kv > div`,
   which is 18px — the buy box's rows are 15px. */
.orchid-pdp__buy .orchid-pdp__kv > .orchid-pdp__kv-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px;
  padding: 15px 2px;
  background: var(--o-cream);
}
.orchid-pdp__buy .orchid-pdp__kv-k { min-width: 170px; font: 500 13px/1.4 var(--o-sans); color: var(--o-ink); }
.orchid-pdp__buy .orchid-pdp__kv-v { font: 400 13px/1.5 var(--o-sans); color: var(--o-muted-2); }

/* Share + trust strip. Not in the design; parked below the shipping stack so
   the design's sequence reads unbroken. */
.orchid-pdp__aux {
  display: flex; flex-direction: column; gap: 16px;
  padding-block-start: 16px;
  border-block-start: 1px solid var(--o-bd-divider);
}
.orchid-pdp__aux .details-checkout-shop { display: flex; flex-direction: column; gap: 10px; }
.orchid-pdp__aux .payment-list li { display: flex; }

/* BOGO strip, re-skinned flat. The old markup carried its own <style> with
   14px radii and three gradients; that block is gone. */
.orchid-pdp__deal {
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(13px, 2.08vw, 30px);
  background: var(--o-moss-bg);
  color: var(--o-moss-dark);
}
.orchid-pdp__deal-top { display: flex; align-items: center; gap: 14px; }
.orchid-pdp__deal-top > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.orchid-pdp__deal-top .o-i { font-size: 26px; color: var(--o-moss); flex: none; }
.orchid-pdp__deal-kicker {
  font: 500 10px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-moss);
}
[dir="ltr"] .orchid-pdp__deal-kicker { letter-spacing: .2em; }
.orchid-pdp__deal-title { font: 500 17px/1.35 var(--o-sans); color: var(--o-moss-dark); }
.orchid-pdp__deal-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.orchid-pdp__deal-hint { display: flex; align-items: center; gap: 6px; font: 400 12px/1.5 var(--o-sans); color: var(--o-moss-dark); }
.orchid-pdp__deal-hint .o-i { font-size: 15px; color: var(--o-moss); }
.orchid-pdp__deal-timer { display: flex; align-items: center; gap: 8px; }
.orchid-pdp__deal-timer .syotimer-cell__value {
  padding: 4px 7px;
  background: var(--o-cream);
  font: 500 12px/1 var(--o-serif);
  color: var(--o-moss-dark);
  direction: ltr;
}
.orchid-pdp__deal-timer .syotimer-cell__unit { display: none; }
.orchid-pdp__deal-timer .syotimer__body { display: flex; align-items: center; gap: 4px; }

/* Scent pyramid tab — component 28's lower half, Pattern A N=320. */
.orchid-pdp__pyramid { gap: 20px; max-width: 940px; }
.orchid-pdp__py {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(12px, 1.81vw, 26px) clamp(12px, 1.94vw, 28px);
  border: 1px solid var(--o-bd-card);
}
.orchid-pdp__py-k {
  font: 500 11px/1 var(--o-sans);
  text-transform: uppercase;
  color: var(--o-sage);
}
[dir="ltr"] .orchid-pdp__py-k { letter-spacing: .2em; }
.orchid-pdp__py-v { font: 400 18px/1.5 var(--o-serif); color: var(--o-ink); }

/* Quick view renders the same buy box inside a Bootstrap modal, which has its
   own padding and column classes. Keep the box readable there. */
.quick-view-shop-wrapper.orchid-pdp__buy { background: var(--o-cream); color: var(--o-ink); }

/* ============================================================================
   ORCHID REDESIGN — PHASE 2e: CASCADE CORRECTIONS
   Found by inspecting the live pages, not by reading the source.

   Every rule below exists because a LEGACY selector carries more classes than
   the Orchid one and therefore wins outright — order is irrelevant when
   specificity differs. The offenders and their weights are named inline. The
   general fix is the `.orchid ` prefix, which buys one class; where the legacy
   rule is four or five classes deep the whole chain is restated.

   When adding to the Phase 2 layer, check the winning rule in DevTools before
   assuming a single-class Orchid selector will apply. It usually will not on
   any element that kept a platform hook.
   ============================================================================ */

/* 1. Rating filter rows.  custom-style.css:
      `.filter-lists .list`   (0,2,0) → display:block, margin-top:10px,
                                        padding-left:30px !important
      `.filter-lists .list a` (0,2,1) → font-size:25px, colour #FFBA5C
      beat `.orchid-filter__rating li` (0,1,1). The stray inset and the orange
      25px glyphs came from here. */
.orchid .orchid-filter__rating li.list {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding-inline-start: 0 !important;
  padding-inline-end: 0;
  position: static;
}
.orchid .orchid-filter__rating li.list > a {
  display: inline-flex;
  font-size: 0;
  line-height: 1;
  color: inherit;
}
.orchid .orchid-filter__rating li.list .o-i { font-size: 17px; line-height: 1; color: var(--o-terracotta); }
.orchid .orchid-filter__rating li.list .o-i.is-off { color: var(--o-bd-box); }

/* 2. Pager row.  custom-style.css `.pagination` (0,1,0) sets
      justify-content:center and `.pagination .pagination-list` (0,2,0) sets
      margin:0 auto. `.orchid-pager` is (0,1,0) — a tie the later sheet won, so
      the three-part row collapsed into a centred clump. */
.orchid .pagination.orchid-pager { justify-content: space-between; }
.orchid .orchid-pager .pagination-list { margin: 0; }

/* 3. Price slider.  The theme's own pre-Orchid block, five classes deep:
      `.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect`
      (0,5,0) → background: var(--main-color-one)  [the tenant's red]
      `.price-range-slider .ui-range-slider.noUi-target .noUi-handle`
      (0,4,0) → 12px, top:-9px, plus a white ::before dot
      Both beat `.orchid-filter .noUi-connect` / `.noUi-handle` (0,2,0). */
.orchid .price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--o-moss);
}
.orchid .price-range-slider .ui-range-slider.noUi-target .noUi-handle {
  width: 15px;
  height: 15px;
  inset-block-start: -6px;
  border-radius: 50%;
  background: var(--o-cream);
  border: 2px solid var(--o-moss);
  box-shadow: none;
}
.orchid .price-range-slider .ui-range-slider.noUi-target .noUi-handle::before,
.orchid .price-range-slider .ui-range-slider.noUi-target .noUi-handle::after {
  display: none;
}

/* 3b. Rating rows.  Found while reviewing the Mira build, which had the same
       gap: `.filter-lists .list.active::before` paints the selected radio dot
       from `--main-color-one` — the tenant's legacy red — and `.list a` gives
       every star a fixed amber (#FFBA5C). Neither is a colour this theme ever
       chose, and both survive on the shop sidebar because the Orchid layer
       restyles the ROW but never names the ::before or the anchor. */
.orchid .filter-lists .list.active::before {
  background: var(--o-moss);
  border-color: var(--o-moss);
}
.orchid .filter-lists .list a {
  color: inherit;
}

/* 4. Quantity stepper.  The theme's `.product-quantity .substract,
      .product-quantity .plus` sets position:absolute for the old circular
      layout. The Orchid rule set display and size but never reset position, so
      both controls left the flow and the stepper rendered as a single cell. */
.orchid .orchid-pdp__buy .product-quantity .plus,
.orchid .orchid-pdp__buy .product-quantity .substract {
  position: static;
  inset: auto;
  transform: none;
}

/* 5. Share row. Not in the design; kept as a live feature, so at minimum it
      must not shout in four brand colours next to a cream buy box. */
.orchid .orchid-pdp__aux .wishlist-share a,
.orchid .orchid-pdp__aux .wishlist-share li > a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--o-bd-icon);
  color: var(--o-ink);
  font-size: 14px;
}
.orchid .orchid-pdp__aux .wishlist-share a:hover { background: var(--o-moss); border-color: var(--o-moss); color: var(--o-cream); }
.orchid .orchid-pdp__aux .wishlist-share a i { color: inherit; }

/* ============================================================================
   ORCHID REDESIGN — PHASE 2f: FILTER SIDEBAR + CARD CTA
   Second browser pass. The sidebar is now the design's single repeated row for
   every group, and the two remaining cascade losses are closed.
   ============================================================================ */

/* 1. Card CTA text.  `.orchid a` (0,1,1) beat `.orchid-pcard__cta` (0,1,0) —
      class count ties, element count breaks it — so the add-to-cart bar drew
      its label in moss instead of the button text colour. Wired to the tenant's
      button tokens while we are here: the Storefront hub's Buttons control is
      what a shop owner expects this bar to follow. */
.orchid a.orchid-pcard__cta {
  color: var(--o-btn-text);
  background: var(--o-cta-veil);
}
.orchid a.orchid-pcard__cta:hover {
  background: var(--o-btn-hover-bg);
  color: var(--o-btn-text);
}

/* 2. Price values row.  The theme's `.price-range-slider .ui-range-slider-footer`
      (0,2,0) sets display:table, which wraps the flex row in an anonymous
      table-cell and shrink-wraps it to 118px — so `space-between` had nothing
      to spread and both figures clumped at the start. */
.orchid .price-range-slider .ui-range-slider-footer {
  display: block;
  width: 100%;
}
.orchid .orchid-filter__prices { width: 100%; }

/* The design's price group breathes one step wider than a filter group. */
.orchid-filter__price { gap: 14px; }

/* 3. Every filter group is now the same row, so the swatch grid and the bare
      star list are gone. What is left is: the box, the label, the count.
      `.orchid-filter__list li > a` is (0,2,1), which already clears `.orchid a`
      and `.filter-lists .list a`. */
.orchid .orchid-filter__list li.list {
  display: block;
  margin: 0;
  padding-inline: 0 !important;
  position: static;
}
.orchid .orchid-filter__list li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 14px/1.4 var(--o-sans);
  color: var(--o-ink-2);
  transition: color .22s ease;
}
.orchid .orchid-filter__list li > a:hover { color: var(--o-ink); }
.orchid .orchid-filter__list li.active > a { color: var(--o-ink-2); }

/* Colour rows: the box carries the colour, so a checked one must not repaint
   it. The design never draws a checked colour row, so this is a deliberate
   extension — an inset cream ring marks the selection, because a cream ✓ on a
   pale swatch would be invisible and the design's border must not move. */
.orchid-filter__list--color li.active > a > .orchid-filter__box {
  background-color: inherit;
  box-shadow: inset 0 0 0 1px var(--o-cream);
}

/* Rating rows: five glyphs in the label slot. */
.orchid-filter__stars { display: inline-flex; align-items: center; gap: 3px; }
.orchid .orchid-filter__list--rating .o-i { font-size: 16px; line-height: 1; color: var(--o-terracotta); }
.orchid .orchid-filter__list--rating .o-i.is-off { color: var(--o-bd-box); }

/* The count sits at the end of whichever row has one. */
.orchid .orchid-filter__list .orchid-filter__n { margin-inline-start: auto; }


/* ============================================================================
   ORCHID REDESIGN — PHASE 2g: THE PRICE SLIDER IN RTL
   Third browser pass, on the deployed page. The sidebar rows now match the
   design; the price control did not, and the reason was direction, not paint.
   ============================================================================ */

/* noUiSlider positions each `.noUi-origin` with `left:X%` and then relies on
   the handle FLOWING to that origin's inline start. Under an RTL page the
   handle flows to the origin's inline END instead, so both handles piled up
   against the right edge and the connect bar ran the full track — the control
   read as one solid green bar with a single dot stuck on the end. The
   library's own answer is to keep the slider element itself LTR and hand
   noUiSlider the direction, so it mirrors the percentages for us.
   `direction: 'rtl'` is passed from all-products.blade.php. */
.orchid .price-range-slider .ui-range-slider { direction: ltr; }

/* Centre the 15px handle on the value it points at. The theme's -3px was
   measured for its own 12px handle and left ours 4.5px adrift. Physical `left`
   is what noUiSlider's stock CSS uses; the island above is forced LTR, so
   `inset-inline-start` resolves to it whichever way the page runs. The chain
   is (0,5,0) to clear `.price-range-slider .ui-range-slider.noUi-target
   .noUi-handle`. */
.orchid .price-range-slider .ui-range-slider.noUi-target .noUi-handle {
  inset-inline-start: -7.5px;
}

/* The upper origin carries `.noUi-background`, whose #DDDDDD was the last
   off-palette colour in the sidebar. It has to stay OPAQUE — it is the mask
   that hides the connect bar past the upper handle — so it takes the design's
   track colour already blended over the page rather than a second translucent
   layer, which would have read a shade darker than the bare track. */
.orchid .price-range-slider .noUi-origin.noUi-background {
  background: color-mix(in srgb, var(--o-ink) 14%, var(--o-cream));
}

/* The two figures. `.price-range-slider .ui-range-slider-footer
   .ui-range-values` (0,3,0) sets display:inline-block — that is why
   space-between had nothing to act on and both prices clumped in the middle of
   the row. Phase 2f missed it because the Orchid class sits on the SAME
   element, so a (0,2,0) selector could never win no matter how late it loaded.
   Design: 500 13px Fraunces, one at each end. */
.orchid .price-range-slider .ui-range-slider-footer .ui-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.orchid .price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-min,
.orchid .price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-max {
  font: 500 13px/1 var(--o-serif);
  color: var(--o-ink);
  direction: ltr;
  unicode-bidi: isolate;
}

/* The add-to-cart "working" veil. The theme's own pre-Orchid half paints
   `.cart-loading::before` with `var(--main-color-one)` — rgb(248,58,38), the
   stock primary that no Orchid token feeds — so for 1.5s after every click the
   button became a blank bright-red slab. It also brought a 5px radius, a 2px
   border and a spinner gif, none of which exists in this design.
   Scoped to `.orchid` rather than the card so the PDP, the list view and the
   quick-view modal all get the same treatment from one rule. The veil now
   drops BEHIND the label (the anchor is a stacking context, so z-index:-1
   still paints above its own background) — the button reads as pressed in the
   tenant's hover colour instead of going blank. */
.orchid .cart-loading::before {
  background-color: var(--o-btn-hover-bg);
  background-image: none;
  border: 0;
  border-radius: 0;
  z-index: -1;
}


/* ============================================================================
   ORCHID REDESIGN — PHASE 2h: UNDER-FILLED GRIDS, GALLERY GAP, MOBILE BUY BAR
   ============================================================================ */

/* `auto-fit` COLLAPSES the tracks it cannot fill and hands their width to the
   items that are left — so a filter that returns two products stretched those
   two cards across the whole row, and a product with two related items drew
   two 693px cards. `auto-fill` keeps the empty tracks, so a card is the same
   size whether the query returned two rows or twenty.
   Scoped with :has() to the grids that hold product cards: the fixed-count
   strips (trust badges, the Instagram row) DO want auto-fit, because there the
   item count is known and stretching to fill is the intent. */
.orchid .o-grid--260:has(> .orchid-pcard) {
  grid-template-columns: repeat(auto-fill, minmax(min(46%, 260px), 1fr));
}
.orchid .o-grid--320:has(> .orchid-pcard) {
  grid-template-columns: repeat(auto-fill, minmax(min(46%, 320px), 1fr));
}

/* The PDP thumbnail strip takes the ramp's `--o-gap` (up to 28px) from
   `.o-grid`, but the design gives this one grid a flat 12px — it is a strip
   under an image, not a section-level grid. */
.orchid .orchid-pdp__thumbs { gap: 12px; }

/* ---------------------------------------------------------------------------
   Mobile sticky buy bar (< 760px). The design pins name + price + one
   full-width CTA to the bottom of the viewport once the action row has
   scrolled away. Hidden by default so it costs nothing on desktop.
   --------------------------------------------------------------------------- */
.orchid-pdp__sticky { display: none; }
