:root {
  --primary: #101010;
  --body-text: #333333;
  --light: #f4f4f4;
  --light-medium: #d7d7d7;
  --text-light: #7d7d7d;
  --text-muted: #636363;
  --border-color: var(--light-medium);
  --rating: #EFB73E;
  --header-height: 94px;
  --subheader-height: 230px;
  --single-blog-featured-image-height: 370px;

  --font-family-heading: "Belgiano Serif", serif;
  --font-family-sans: "Plus Jakarta Sans", sans-serif;
  --font-family-montserrat: "Montserrat", sans-serif;

  --bg-subheader: url('../images/header-about.jpg');
  --bg-whyus: url('../images/beautiful-light-lamp-bulb-decoration.jpg');
  --bg-signup-cta: url('../images/close-up-elegant-decoration-house.jpg');

  @media (max-width: 1199.98px) {
    --header-height: 75px;
    --subheader-height: 150px;
    --single-blog-featured-image-height: 300px;
  }
  @media (max-width: 991.98px) {
    --header-height: 59px;
    --single-blog-featured-image-height: 250px;
  }
  @media (max-width: 767.98px) { --subheader-height: 100px; }
}

@font-face {
    font-family: 'Belgiano Serif';
    src: url('../fonts/BelgianoSerif.otf') format('opentype'),
         url('../fonts/BelgianoSerif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-heading {
  font-family: var(--font-family-heading) !important;
}
.font-body {
  font-family: var(--font-family-sans) !important;
}
.font-montserrat {
  font-family: var(--font-family-montserrat) !important;
}
.font-weight-medium {
  font-weight: 500 !important;
}
.font-weight-semibold {
  font-weight: 600 !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: var(--font-family-heading);
  font-weight: 400 !important;
  margin-bottom: 0.5em;
  line-height: 1.3 !important;
  text-wrap: balance;
}
.heading-gradient {
  background-image: linear-gradient(135deg, #7a7a7a , #101010 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  text-decoration: underline transparent 1px;
  color: var(--primary);
  transition: all 0.3s ease-in-out;

  &:focus, &:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
    transition: all 0.2s ease-in;
  }
}

.btn {
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
}
.btn-light {
  background-color: #fff;
  border-color: #fff;
}
.btn-dark {
  background-color: #000;
  border-color: #000;
}
.btn-outline-dark {
  border-color: #000;
  color: #000;

  &:focus, &:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
}
.btn-h-xl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn-pill-transparent {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  font-weight: 500;
  padding: .5rem 1rem;

  &:focus,
  &:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}

.bg-primary {
  background-color: var(--primary) !important;
}
.bg-light {
  background-color: var(--light) !important;
}
.border, .border-top, .border-right, .border-bottom, .border-left,
.form-control {
  border-color: var(--border-color) !important;
}
.rounded-md {
  border-radius: .3rem !important;
}
.rounded-lg {
  border-radius: .375rem !important;
}
.fs-18 {
  font-size: 18px !important;
}

.m-4-8 { margin: 2.5rem !important; }
.mt-4-8, .my-4-8 { margin-top: 2.5rem !important; }
.mr-4-8, .mx-4-8 { margin-right: 2.5rem !important; }
.mb-4-8, .my-4-8 { margin-bottom: 2.5rem !important; }
.ml-4-8, .mx-4-8 { margin-left: 2.5rem !important; }
.m-60 { margin: 60px !important; }
.mt-60, .my-60 { margin-top: 60px !important; }
.mr-60, .mx-60 { margin-right: 60px !important; }
.mb-60, .my-60 { margin-bottom: 60px !important; }
.ml-60, .mx-60 { margin-left: 60px !important; }
.p-4-8 { padding: 2.5rem !important; }
.pt-4-8, .py-4-8 { padding-top: 2.5rem !important; }
.pr-4-8, .px-4-8 { padding-right: 2.5rem !important; }
.pb-4-8, .py-4-8 { padding-bottom: 2.5rem !important; }
.pl-4-8, .px-4-8 { padding-left: 2.5rem !important; }
.p-60 { padding: 60px !important; }
.pt-60, .py-60 { padding-top: 60px !important; }
.pr-60, .px-60 { padding-right: 60px !important; }
.pb-60, .py-60 { padding-bottom: 60px !important; }
.pl-60, .px-60 { padding-left: 60px !important; }
@media (min-width: 576px) {
  .p-sm-4-8 { padding: 2.5rem !important; }
  .pt-sm-4-8, .py-sm-4-8 { padding-top: 2.5rem !important; }
  .pr-sm-4-8, .px-sm-4-8 { padding-right: 2.5rem !important; }
  .pb-sm-4-8, .py-sm-4-8 { padding-bottom: 2.5rem !important; }
  .pl-sm-4-8, .px-sm-4-8 { padding-left: 2.5rem !important; }
  .p-sm-60 { padding: 60px !important; }
  .pt-sm-60, .py-sm-60 { padding-top: 60px !important; }
  .pr-sm-60, .px-sm-60 { padding-right: 60px !important; }
  .pb-sm-60, .py-sm-60 { padding-bottom: 60px !important; }
  .pl-sm-60, .px-sm-60 { padding-left: 60px !important; }
}
@media (min-width: 768px) {
  .p-md-4-8 { padding: 2.5rem !important; }
  .pt-md-4-8, .py-md-4-8 { padding-top: 2.5rem !important; }
  .pr-md-4-8, .px-md-4-8 { padding-right: 2.5rem !important; }
  .pb-md-4-8, .py-md-4-8 { padding-bottom: 2.5rem !important; }
  .pl-md-4-8, .px-md-4-8 { padding-left: 2.5rem !important; }  
  .p-md-60 { padding: 60px !important; }
  .pt-md-60, .py-md-60 { padding-top: 60px !important; }
  .pr-md-60, .px-md-60 { padding-right: 60px !important; }
  .pb-md-60, .py-md-60 { padding-bottom: 60px !important; }
  .pl-md-60, .px-md-60 { padding-left: 60px !important; }
}
@media (min-width: 992px) {
  .p-lg-4-8 { padding: 2.5rem !important; }
  .pt-lg-4-8, .py-lg-4-8 { padding-top: 2.5rem !important; }
  .pr-lg-4-8, .px-lg-4-8 { padding-right: 2.5rem !important; }
  .pb-lg-4-8, .py-lg-4-8 { padding-bottom: 2.5rem !important; }
  .pl-lg-4-8, .px-lg-4-8 { padding-left: 2.5rem !important; }  
  .p-lg-60 { padding: 60px !important; }
  .pt-lg-60, .py-lg-60 { padding-top: 60px !important; }
  .pr-lg-60, .px-lg-60 { padding-right: 60px !important; }
  .pb-lg-60, .py-lg-60 { padding-bottom: 60px !important; }
  .pl-lg-60, .px-lg-60 { padding-left: 60px !important; }
}
@media (min-width: 1200px) {
  .p-xl-4-8 { padding: 2.5rem !important; }
  .pt-xl-4-8, .py-xl-4-8 { padding-top: 2.5rem !important; }
  .pr-xl-4-8, .px-xl-4-8 { padding-right: 2.5rem !important; }
  .pb-xl-4-8, .py-xl-4-8 { padding-bottom: 2.5rem !important; }
  .pl-xl-4-8, .px-xl-4-8 { padding-left: 2.5rem !important; }  
  .p-xl-60 { padding: 60px !important; }
  .pt-xl-60, .py-xl-60 { padding-top: 60px !important; }
  .pr-xl-60, .px-xl-60 { padding-right: 60px !important; }
  .pb-xl-60, .py-xl-60 { padding-bottom: 60px !important; }
  .pl-xl-60, .px-xl-60 { padding-left: 60px !important; }
}
@media (min-width: 1400px) {
  .col-xxl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-xxl-auto { flex: 0 0 auto; max-width: auto; }
  .col-xxl-1 { flex: 0 0 8.33%; max-width: 8.33%; }
  .col-xxl-2 { flex: 0 0 16.67%; max-width: 16.67%; }
  .col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xxl-4 { flex: 0 0 33.33%; max-width: 33.33%; }
  .col-xxl-5 { flex: 0 0 41.67%; max-width: 41.67%; }
  .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xxl-7 { flex: 0 0 58.33%; max-width: 58.33%; }
  .col-xxl-8 { flex: 0 0 66.67%; max-width: 66.67%; }
  .col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xxl-10 { flex: 0 0 83.33%; max-width: 83.33%; }
  .col-xxl-11 { flex: 0 0 91.67%; max-width: 91.67%; }
  .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
  
  .m-xxl-n60 { margin: -60px !important; }
  .mt-xxl-n60, .my-xxl-n60 { margin-top: -60px !important; }
  .mr-xxl-n60, .mx-xxl-n60 { margin-right: -60px !important; }
  .mb-xxl-n60, .my-xxl-n60 { margin-bottom: -60px !important; }
  .ml-xxl-n60, .mx-xxl-n60 { margin-left: -60px !important; }
  .p-xxl-4-8 { padding: 2.5rem !important; }
  .pt-xxl-4-8, .py-xxl-4-8 { padding-top: 2.5rem !important; }
  .pr-xxl-4-8, .px-xxl-4-8 { padding-right: 2.5rem !important; }
  .pb-xxl-4-8, .py-xxl-4-8 { padding-bottom: 2.5rem !important; }
  .pl-xxl-4-8, .px-xxl-4-8 { padding-left: 2.5rem !important; }  
  .p-xxl-60 { padding: 60px !important; }
  .pt-xxl-60, .py-xxl-60 { padding-top: 60px !important; }
  .pr-xxl-60, .px-xxl-60 { padding-right: 60px !important; }
  .pb-xxl-60, .py-xxl-60 { padding-bottom: 60px !important; }
  .pl-xxl-60, .px-xxl-60 { padding-left: 60px !important; }
}
/* Max-width media queries */
@media (max-width: 1399.98px) {
  .p-xl-down-60 { padding: 60px !important; }
  .pt-xl-down-60, .py-xl-down-60 { padding-top: 60px !important; }
  .pr-xl-down-60, .px-xl-down-60 { padding-right: 60px !important; }
  .pb-xl-down-60, .py-xl-down-60 { padding-bottom: 60px !important; }
  .pl-xl-down-60, .px-xl-down-60 { padding-left: 60px !important; }
}
@media (max-width: 1199.98px) {
  .p-lg-down-60 { padding: 60px !important; }
  .pt-lg-down-60, .py-lg-down-60 { padding-top: 60px !important; }
  .pr-lg-down-60, .px-lg-down-60 { padding-right: 60px !important; }
  .pb-lg-down-60, .py-lg-down-60 { padding-bottom: 60px !important; }
  .pl-lg-down-60, .px-lg-down-60 { padding-left: 60px !important; }
}
@media (max-width: 991.98px) {
  h1, .h1 { font-size: 2rem; }
  .display-4 { font-size: 3rem; }
  .p-md-down-60 { padding: 60px !important; }
  .pt-md-down-60, .py-md-down-60 { padding-top: 60px !important; }
  .pr-md-down-60, .px-md-down-60 { padding-right: 60px !important; }
  .pb-md-down-60, .py-md-down-60 { padding-bottom: 60px !important; }
  .pl-md-down-60, .px-md-down-60 { padding-left: 60px !important; }
}
@media (max-width: 767.98px) {
  .p-sm-down-60 { padding: 60px !important; }
  .pt-sm-down-60, .py-sm-down-60 { padding-top: 60px !important; }
  .pr-sm-down-60, .px-sm-down-60 { padding-right: 60px !important; }
  .pb-sm-down-60, .py-sm-down-60 { padding-bottom: 60px !important; }
  .pl-sm-down-60, .px-sm-down-60 { padding-left: 60px !important; }
}
@media (max-width: 575.98px) {
  .display-4 { font-size: 2.5rem; }
  .p-xs-down-60 { padding: 60px !important; }
  .pt-xs-down-60, .py-xs-down-60 { padding-top: 60px !important; }
  .pr-xs-down-60, .px-xs-down-60 { padding-right: 60px !important; }
  .pb-xs-down-60, .py-xs-down-60 { padding-bottom: 60px !important; }
  .pl-xs-down-60, .px-xs-down-60 { padding-left: 60px !important; }
}

.text-primary {
  color: var(--primary) !important;
}
.text-white *:not(.btn) {
  color: #fff !important;
}
.text-light {
  color: var(--text-light) !important;
}
.text-black {
  color: #000 !important;
}
.text-muted {
  color: var(--text-muted);
  font-weight: 300;

  a {
    color: inherit !important;
  }
}
.text-rating {
  color: var(--rating) !important;
}
.text-balance {
  text-wrap: balance !important
}

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

body {
  font-family: var(--font-family-sans);
  color: var(--body-text);
  line-height: 1.6;
}

.owl-nav {
  [class*="owl-"]:focus,
  [class*="owl-"]:hover {
    color: #fff !important;
  }
}
.carousel-nav {
  a {
    display: inline-block;

    &.disabled {
      pointer-events: none;
      opacity: 0.3;
    }
  }
}

.breadcrumb {
  a,
  .breadcrumb-item.active {
    color: var(--body-text);
  }
}
.social-list {
  a {
    background-color: #fff;
    border-radius: 8px;
    color: #000;
    display: inline-block;
    font-size: 20px;
    line-height: 44px;
    text-align: center;
    width: 44px;
    height: 44px;

    .fa {
      transition: inherit;
    }

    &:focus, &:hover {
      background-color: var(--primary) !important;
      color: #fff;
      text-decoration: none;

      .fa {
        color: #fff !important;
      }
    }
  }

  &.social-list-rounded a {
    border-radius: 50%;
  }

  &.social-list-colors a {
    background-color: #F8F9FA;

    .fa-facebook {
      color: #2379DE;
    }
    .fa-twitter {
      color: #77CEFF;
    }
    .fa-x {
      color: #000;
    }
    .fa-linkedin {
      color: #297CB8;
    }
    .fa-instagram {
      color: #ff0069;
    }
  }
}

#wrap {
  margin: 0 auto;
  overflow-x: hidden;
  max-width: 1920px;
  width: 100%;
}

#header {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  inset: 0 0 auto 0;
  z-index: 1030;

  .navbar.navbar-light {
    background-color: transparent !important;
  }

  .navbar-brand {
    img {
      @media (max-width: 1399.98px) {
        width: 250px;
      }
      @media (max-width: 1199.98px) {
        width: 200px;
      }
    }
  }
  #main-nav {
    @media (max-width: 991.98px) {
      position: absolute;
      inset: calc(100% + .5rem) -1rem 0 -1rem;
    }
  }
  .navbar-nav {
    li:not(:first-child) {
      @media (min-width: 1200px) {
        margin-left: 36px;
      }      

      @media (min-width: 992px) and (max-width: 1199.98px) {
        margin-left: 24px;
      }
    }
    a {
      color: var(--primary);

      &:focus, &:hover {
        text-decoration: underline;
      }
    }
    .nav-item.active > a {
      font-weight: 600;
    }
    @media (max-width: 991.98px) {
      background: linear-gradient(135deg, #7A7A7A 0%, #101010 100%);

      a {
        color: #fff;
      }
    }
  }
  .action-icons {
    a {
      &:focus, &:hover {
        color: var(--text-light);
        text-decoration: underline;
      }
    }
  }
}
.header-push {
  margin-top: var(--header-height);
}
.header-gap {
  padding-top: var(--header-height);
}

.s_subheader_section {
  background-image: var(--bg-subheader);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--subheader-height);

  &:before,
  &:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  &:before {
    background: rgba(255, 255, 255, .95);
  }
  &:after {
    background: linear-gradient(0, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    top: 50%;
  }
  
  h1 {
    z-index: 2;
  }
}

.s_hero_section {
  .hero-content {
    background-color: #C57230;
    background: linear-gradient(150.39deg, #D37A33 0%, #6D3F1A 100%);

    @media (min-width: 992px) and (max-width: 1399.98px) {
      padding-top: 124px !important;
    }
  }
  .hero-img {
    --hero-height: 850px;
    background-image: var(--hero-bg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--hero-height);

    img {
      max-width: 430px;
      height: auto;
      z-index: 5;
    }
    @media (max-width: 1399.98px) {
      padding-top: 124px !important;
      --hero-height: 650px;
    }
    @media (max-width: 1199.98px) {
      --hero-height: 550px;
    }
    @media (max-width: 991.98px) {
      --hero-height: auto;
      min-height: 30vw;
    }
  }

  &.s_brand_hero_section {
    .hero-content {
      background-color: #51596b;
      background: linear-gradient(150.39deg, #636378 0%, #11333D 100%);
    }
    .hero-img {
      position: relative;

      &:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
      }
    }
  }
}

.category-carousel {
  .category-box {
    overflow: hidden;
    position: relative;

    img {
      object-fit: cover;
      transition: transform 0.3s ease;
      width: 100%;
      height: 440px;
    }

    a {
      display: block;
      position: absolute;
      inset: 0;
      color: #fff;
      font-family: var(--font-family-montserrat);
      font-weight: bold;

      &:before {
        content: "";
        position: absolute;
        inset: 50% 0 0 0;
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
      }

      span {
        position: absolute;
        inset: auto 1rem 1.5rem 1rem;
      }
    }

    &:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 1399.98px) {
      img {
        height: 350px;
      }
    }
    @media (max-width: 1199.98px) {
      img {
        height: 320px;
      }
    }
     @media (max-width: 991.98px) {
      img {
        height: 300px;
      }
    }
     @media (max-width: 767.98px) {
      img {
        height: 270px;
      }
    }
  }
}

.s_brands_section {
  .col-12 {
    --brand-height: 300px;
    background-image: var(--brand-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--brand-height);

    &:before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    a {
      z-index: 2;
    }
    img {
      max-width: 100%;
      max-height: calc(var(--brand-height) - 5rem);
    }

    @media (max-width: 1199.98px) {
      --brand-height: 240px;
    }
    @media (max-width: 767.98px) {
      --brand-height: 200px;
    }
  }
}

.s_why_us_section {  
  background-image: var(--bg-whyus);
  background-position: center;
  background-size: cover;
  position: relative;

  &:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      white 0%,
      rgba(255, 255, 255, 0.92) 25%,
      rgba(255, 255, 255, 0.92) 25%,
      rgba(255, 255, 255, 0.92) 75%,
      rgba(255, 255, 255, 0.92) 75%,
      white 100%
    );
  }

  .d-lg-block {
    position: relative;

    img {
      --img-gap: 1.5rem;
      position: absolute;
      inset: 0 var(--img-gap);
      width: calc( 100% - calc( var(--img-gap) * 2 ) );

      @media (min-width: 1400px) {
        --img-gap: 60px;
      }
    }
  }
}

.s_sign_up_cta_section > div {
  background-image: var(--bg-signup-cta);
  background-position: center;
  background-size: cover;
  position: relative;

  &:before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  > * {
    position: relative;
    z-index: 2;
  }
}

.listing-actions {
  .listing-view {
    height: 52px;
    a {
      color: #000;
      width: 52px;
      height: 52px;

      &:focus, &:hover, &.active {
        background-color: #000;
        color: #fff;
        text-decoration: none;
      }
    }
  }
  select.form-control {
    height: 52px;
  }
}
.products-grid {
  .product-card {
    display: flex;
    flex-direction: column;
  }
  .product-thumb {
    flex: 1 0 auto;
    
    a {
      &:focus, &:hover {
        border-color: var(--primary) !important;
      }
    }
    img {
      object-fit: contain;
      max-height: 360px;
    }
  }
  .product-title {
    font-family: var(--font-family-sans);
  }
  .product-content {
    display: none;
  }
  &.owl-carousel {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .owl-item .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    height: 100%
  }

  &.list-view {
    > .col-12 {
      flex: 0 0 100%;
      max-width: 100%;

      &:not(:last-child) .product-card {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
      }
    }
    .product-card {
      --content-width: 700px;
      --content-margin-right: 50px;
      flex-direction: row;
      align-items: center;
    }
    .product-thumb {
      flex: 0 0 235px;
      height: 235px;

      img {
        max-height: 100%;
      }
    }
    .product-details {
      display: flex;
      justify-content: space-between;
      flex: 1 1 auto;
      flex-wrap: wrap;
      margin-top: 0 !important;
      margin-left: 50px;
      text-align: left !important;
    }
    .product-title {
      margin-right: var(--content-margin-right);
      margin-bottom: 0 !important;
      max-width: var(--content-width);
    }
    .product-content {
      display: flex;
      justify-content: space-between;
      margin-top: 1.5rem;
      width: 100%;

      > div:first-child {
        margin-right: var(--content-margin-right);
        max-width: var(--content-width);
      }
    }
    .btn-add-to-cart {
      display: inline-flex;
      align-items: center;
      align-self: flex-end;
      white-space: nowrap;
    }

    @media (max-width: 1199.98px) {
      .product-card {
        --content-margin-right: 0;
        align-items: flex-start;
      }
      .product-details,
      .product-content {
        flex-direction: column;
        align-items: flex-start;
      }
      .product-details {
        margin-left: 1.5rem;
      }
      .product-content {
        margin-top: .5rem;
      }
      .product-title {
        margin-bottom: .5rem !important;
      }
      .btn-add-to-cart {
        align-self: auto;
        margin-top: 1rem;
      }
    }
    @media (max-width: 575.98px) {
      .product-card {
        flex-direction: column;
        height: auto !important;
      }
      .product-thumb {
        flex: 1 0 100%;
        width: 100%;
        height: auto;
      }
      .product-details {
        margin-top: 1rem !important;
        margin-left: 0;
      }
    }
  }

  @media (min-width: 1200px) {
    .col-xl-2 {
      flex: 0 0 20%;
      max-width: 20%;
    }
  }
}
.pagination {
  border-radius: 0;
  
  li {
    &:not(:last-child) { margin-right: 1.25rem; }

    .page-link {
      color: #000;
      font-weight: bold;
      padding: 0;
      line-height: 41px;
      text-align: center;
      text-decoration: none;
      width: 41px;
      height: 41px;

      &:focus, &:hover {
        background-color: #000;
        color: #fff;
        text-decoration: none;
      }
    }
    &.active .page-link {
      background-color: #000;
      border-color: #000;
      color: #fff;
      pointer-events: none;
    }
  }
}
.shop-filter {
  .filter-widget {
    margin-bottom: 1.5rem;

    &:not(:last-child) {
      margin-bottom: 3rem;

      @media (max-width: 1399.98px) {
        margin-bottom: 2rem;
      }
      @media (max-width: 767.98px) {
        margin-right: 3rem;
        margin-bottom: 1.5rem;
      }
    }
    ul { margin-bottom: 0; }
    li:not(:last-child) { margin-bottom: .5rem; }

    @media (max-width: 991.98px) { font-size: 0.9rem !important; }
  }
  .filter-widget-heading {
    margin-bottom: 1rem;

    @media (max-width: 1199.98px) { font-size: 1.7rem !important; }
    @media (max-width: 991.98px) { font-size: 1.5rem !important; }
    @media (max-width: 767.98px) { font-size: 1.3rem !important; }
  }  
}
.product-gallery .main-image-slider {
  --slider-main-image-height: 600px;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 30px;
  height: var(--slider-main-image-height);

  .owl-stage-outer,
  .owl-stage {
    display: flex;
    height: var(--slider-main-image-height);
  }

  .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: var(--slider-main-image-height);
    max-height: calc(var(--slider-main-image-height) - 1px);

    img {
      width: auto;
      height: auto;
      max-height: calc(100% - 2px);
      display: block;
    }
  }

  @media (max-width: 1199.98px) {
    --slider-main-image-height: 500px;
  }
  @media (max-width: 991.98px) {
    --slider-main-image-height: 400px;
  }
  @media (max-width: 575.98px) {
    --slider-main-image-height: 350px;
  }
}

.product-gallery .thumbnail-slider .owl-item {
  --slider-thumb-height: 220px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: var(--slider-thumb-height);

  &:focus,
  &:hover,
  &.selected {
    border-color: #000;
  }

  img {
    height: 100%;
    object-fit: contain;
  }

  @media (max-width: 1399.98px) {
    --slider-thumb-height: 180px;
  }
  @media (max-width: 1199.98px) {
    --slider-thumb-height: 150px;
  }
  @media (max-width: 991.98px) {
    --slider-thumb-height: 120px;
  }
}

.product-gallery .thumbnail-slider-wrapper {
  .owl-nav {
    margin-top: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 20px);
    left: 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;

    .owl-prev {
      svg {
        margin-left: -2px;
        height: 100%;
      }
    }
    .owl-next {
      svg {
        margin-left: 2px;
        height: 100%;
      }
    }

    button {
      pointer-events: auto;
      background: #fff !important;
      width: 35px;
      height: 35px;
      border-radius: 50% !important;
      border: 1px solid var(--border-color) !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      &:focus,
      &:hover {
        background: #000 !important;
        border-color: #000 !important;
      }

      &.disabled {
        opacity: 0.3;
        cursor: not-allowed;
      }

      @media (max-width: 991.98px) {
        margin: 0 -5px !important;
        width: 30px;
        height: 30px;

        svg {
          margin-top: -2px;
        }
      }
    }
  }
}

.product-summary {
  .product-quantity-wrapper {
    border: 1px solid #000;
    width: 150px;
    height: 50px;
    
    .input-group {
      width: 100%;
      height: 48px;
    }
    .quantity-input {
      border: none;
      text-align: center;
      height: 48px;
    }
    .btn {
      text-align: center;
      width: 50px;
      height: 48px;
    }
  }

  .product-color-options {
    gap: 10px;

    .color-box {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 1px solid var(--border-color);
      border-radius: 4px;
      transition: all 0.3s ease;
      position: relative;
    }
    .color-option {
      position: relative;
      cursor: pointer;
      margin: 0;

      input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;

        &:focus + .color-box {
          border-color: #000;
        }
        &:checked + .color-box {
          outline: 1px solid #000;
          border-color: #fff;
        }
      }

      &:hover .color-box {
        border-color: #000;
      }
    }
  }
}

.faq-accordion {
  .card-header {
    .btn {
      color: #000;

      &:before {
        color: var(--text-light);
        content: "\f055";
        font-family: "FontAwesome";
        font-size: 18px;
        margin-right: 9px;
      }

      &[aria-expanded="true"]:before {
        content: "\f056";
      }

      &:focus,
      &:hover {
        color: var(--text-light);
        text-decoration: none !important;
      }
    }
  }
}
.contact-form {
  table {
    th {
      padding-left: 0;
      white-space: nowrap;
      width: 1%;
    }
    td {
      padding-left: 0;
      padding-right: 0;
    }

    @media (max-width: 575.98px) {
      tr, th, td {
        display: block;
        width: 100%;
      }
      th {
        padding-top: 0;
        padding-bottom: 0;
      }
      td {
        padding-top: 0;

        .btn {
          margin-top: 20px;
          width: 100%;
        }
      }
    }
  }
}

.blog-grid {
  .card {
    .post-thumb {
      overflow: hidden;

      img {
        aspect-ratio: 14/9;
        transition: transform 0.3s ease-in-out;;
      }

      &:focus img,
      &:hover img {
        transform: scale(1.1);
      }
    }
  }
}
.s_single_blog_section {
  .single-blog-featured-image {
    overflow: hidden;
    height: var(--single-blog-featured-image-height);

    img {
      object-fit: cover;
      object-position: center;
    }
  }

  .post-content {
    p:last-child {
      margin-bottom: 0;
    }
    img {
      aspect-ratio: 14/9;
      object-fit: cover;
      object-position: center;
      width: 100%;
    }
  }
}

#footer {
  a {
    color: var(--primary) !important;
  }
}