@charset "utf-8";


/**=========================================================
 * Theme Name   :  Ecommerce
 * Author       :  Rabbani ,
 * Description  :  December 2023
 * File Name    :  style.css
=========================================================**/

:root {

    --primary-color: #121111;
    --secondary-color: #761818;
    --text-color: #74787C;
    --headings-color: #121111;
    --white-color: #ffffff;
    --danger-color: #9F1111;
    --transition-base: 0.3s;
    --border-color: #E9E9E9;
    --light-bg: #F5F4F2;
    --light-bg-2: #F6F6F6;
    --box-shadow: 0px 4px 40px #E2E2E2;
    --cz-nav-link-color: white; /* Default for large screens */
    --cz-nav-link-hover-color : white;
}

@media (max-width: 991.98px) { 
    /* Apply styles when navbar toggles on small screens */
    :root {
        --cz-nav-link-color: black; /* Change to black for small screens */
        --cz-nav-link-hover-color : red;
    }
}

body {
    margin: 0;
    color: var(--text-color);
    background-color: var(--white-color);
    font-weight: 400;
  }
  

  
@-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
  
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
  
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @-webkit-keyframes theme_fadeInUp {
    0% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    50% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes theme_fadeInUp {
    0% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    50% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes ripple-white {
    0% {
      -webkit-box-shadow: 0 0 0 0 var(--white-color);
      box-shadow: 0 0 0 0 var(--white-color);
    }
  
    50% {
      -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }
  
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
  }
  
  @keyframes ripple-white {
    0% {
      -webkit-box-shadow: 0 0 0 0 var(--white-color);
      box-shadow: 0 0 0 0 var(--white-color);
    }
  
    50% {
      -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }
  
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
  }
  
  @-webkit-keyframes theme-scale-up {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @keyframes theme-scale-up {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @-webkit-keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
  
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
  
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
  
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
  
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
  
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
  
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
  
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
  
    90% {
      -webkit-transform: translate(1px, 2px) rotate(0deg);
      transform: translate(1px, 2px) rotate(0deg);
    }
  
    100% {
      -webkit-transform: translate(1px, -2px) rotate(-1deg);
      transform: translate(1px, -2px) rotate(-1deg);
    }
  }
  
  @keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
  
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
  
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
  
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
  
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
  
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
  
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
  
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
  
    90% {
      -webkit-transform: translate(1px, 2px) rotate(0deg);
      transform: translate(1px, 2px) rotate(0deg);
    }
  
    100% {
      -webkit-transform: translate(1px, -2px) rotate(-1deg);
      transform: translate(1px, -2px) rotate(-1deg);
    }
  }
  
  @-webkit-keyframes toTopFromBottom {
    49% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
    }
  
    51% {
      opacity: 1;
    }
  }
  
  @keyframes toTopFromBottom {
    49% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
    }
  
    51% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes loading {
    0% {
      width: 0;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @keyframes loading {
    0% {
      width: 0;
    }
  
    100% {
      width: 100%;
    }
  }
  

    /* Loader styles */
    #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }

    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }

    .centered-banner {
        max-width: 100%; /* Make sure the image width doesn't overflow */
        height: auto; /* Maintain the aspect ratio */
        object-fit: cover; /* Ensure the image covers the container */
        max-height: 80vh; /* Optional: Limit the height to 80% of the viewport height */
        margin-top: 10vh; /* Moves the image down by 10% of the viewport height */
    }


    /* Logo Design */

    .logo {
      width: 181px;
      height: 57px;
      object-fit: contain;
    }
    
    /* Responsive styling for smaller devices */

    @media (max-width: 768px) {
        .logo {
            width: 150px; 
            height: 49px; 
        }
    }
    
    @media (max-width: 576px) {
        .logo {
          width: 156px;
          height: 49px;
        }
    }


    /* Customize the email link */

        .address-link {
            color: #f3ede4; 
            text-decoration: none;
        }
        
        .address-link:hover {
            color: #9e82ec; 
        }
        
        /* Adjustments for responsiveness */
        
        @media (max-width: 768px) {
            .text-body {
            font-size: 0.9rem; /* Adjust font size for small screens */
            }
        
            .text-sm-end {
            text-align: center; /* Center the address on smaller screens */
            }
        }
        
        @media (min-width: 768px) {
            .text-md-start {
            text-align: left; /* Align the address to the left on medium to large screens */
            }
        }
        
   

        .custom-dropdown-menu {
            max-height: 500px;  /* Limit height of the dropdown */
            overflow-y: auto;  
            padding-right: 5px; /* Optional: Adds space for the scrollbar */
            position: relative; /* Ensures proper stacking of dropdown content */
        }
        
        /* Scrollbar styles for WebKit browsers */
        .custom-dropdown-menu::-webkit-scrollbar {
            width: 8px; /* Scrollbar width */
            background-color: transparent; /* Make the scrollbar background transparent */
        }
        
        /* Scrollbar thumb style */
        .custom-dropdown-menu::-webkit-scrollbar-thumb {
            background-color: #006B85; /* Gray color for the handle */
            border-radius: 10px; /* Rounded corners for the handle */
            border: 2px solid transparent; /* Optional: Adds some space around the thumb */
            background-clip: content-box; /* Makes the thumb look neat */
        }
        
        /* Hover state for scrollbar thumb */
        .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
            background-color: #555; /* Darker gray when hovering */
        }
        
        /* Scrollbar track (area where thumb slides) */
        .custom-dropdown-menu::-webkit-scrollbar-track {
            background-color: #f1f1f1; /* Light gray background for the track */
            border-radius: 10px; /* Rounded corners for the track */
        }
        
        /* Firefox scrollbar customization */
        .custom-dropdown-menu {
            scrollbar-width: thin; /* Thin scrollbar for Firefox */
            scrollbar-color: #006B85 #f1f1f1; /* Custom thumb and track colors */
        }
        
        /* Optional: Style the scrollbar when it's active */
        .custom-dropdown-menu::-webkit-scrollbar:active {
            background-color: #ddd; /* Slightly darker background when active */
        }
        
        /* Ensure proper behavior on smaller screens */
        @media (max-width: 992px) {
            .navbar-nav .dropdown-menu {
                position: static; /* Adjust for better mobile dropdown behavior */
            }
        }




/* Scoped Swiper Styles */

#large-image-section {
  border: 1px solid #ECECEC; /* Adjust the border thickness as needed */
  padding: 10px; /* Optional: adds padding inside the border */
  background-color: #fff; /* Optional: Set a background color if needed */
  margin-bottom: 5px;;
}



.custom-swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.custom-swiper-btn-prev,
.custom-swiper-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(243, 239, 239, 0.908);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-swiper-btn-prev {
    left: 10px;
}

.custom-swiper-btn-next {
    right: 10px;
}

.custom-swiper-btn-prev:hover,
.custom-swiper-btn-next:hover {
    background-color: #0E7673;
}

.custom-swiper-thumb-img.active {
    border: 2px solid #0E7673;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    padding:10px;
}


/* Gradient Background for Modal */






/***************** spacing padding *************/
.ptb-140 {
    padding: 140px 0;
  }
  
  .ptb-14 {
    padding: 14px 0;
  }
  
  @media (max-width: 767.98px) {
    .ptb-140 {
      padding: 80px 0;
    }
  }
  
  .pt-140 {
    padding-top: 140px;
  }
  
  @media (max-width: 767.98px) {
    .pt-140 {
      padding-top: 80px;
    }
  }
  
  .pb-140 {
    padding-bottom: 140px;
  }
  
  @media (max-width: 767.98px) {
    .pb-140 {
      padding-bottom: 80px;
    }
  }
  
  .pt-120 {
    padding-top: 120px;
  }
  
  @media (max-width: 767.98px) {
    .pt-120 {
      padding-top: 70px;
    }
  }
  
  .ptb-120 {
    padding: 120px 0;
  }
  
  @media (max-width: 767.98px) {
    .ptb-120 {
      padding: 70px 0;
    }
  }
  
  .pt-100 {
    padding-top: 100px;
  }
  
  @media (max-width: 767.98px) {
    .pt-100 {
      padding-top: 80px;
    }
  }
  
  .ptb-60 {
    padding: 60px 0;
  }
  
  .pt-20 {
    padding-top: 20px;
  }
  
  .pb-20 {
    padding-bottom: 20px;
  }
  
  .pt-40 {
    padding-top: 40px;
  }
  
  .pt-30 {
    padding-top: 30px;
  }
  
  .pt-32 {
    padding-top: 32px;
  }
  
  .pb-30 {
    padding-bottom: 30px;
  }
  
  .pb-32 {
    padding-bottom: 32px;
  }
  
  .pb-40 {
    padding-bottom: 40px;
  }
  
  .pb-100 {
    padding-bottom: 100px;
  }
  
  @media (max-width: 767.98px) {
    .pb-100 {
      padding-bottom: 70px;
    }
  }
  
  .pb-140 {
    padding-bottom: 140px;
  }
  
  @media (max-width: 767.98px) {
    .pb-140 {
      padding-bottom: 100px;
    }
  }
  
  .py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .py-32 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /*********************** spacing margin ***********************/
  .mt-10 {
    margin-top: 10px;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mt-30 {
    margin-top: 30px;
  }
  
  .mt-32 {
    margin-top: 32px;
  }
  
  .mt-40 {
    margin-top: 40px;
  }
  
  .mt-48 {
    margin-top: 48px;
  }
  
  .mt-50 {
    margin-top: 50px;
  }
  
  .mt-60 {
    margin-top: 60px;
  }
  
  .mt-70 {
    margin-top: 70px;
  }
  
  .mt-80 {
    margin-top: 80px;
  }
  
  .mb-10 {
    margin-bottom: 10px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .mb-30 {
    margin-bottom: 30px;
  }
  
  .mb-32 {
    margin-bottom: 32px;
  }
  
  .mb-40 {
    margin-bottom: 40px;
  }
  
  .mb-50 {
    margin-bottom: 50px;
  }
  
  .mb-60 {
    margin-bottom: 60px;
  }
  
  .mb-70 {
    margin-bottom: 70px;
  }
  
  .mb-100 {
    margin-bottom: 100px;
  }
  
  .mx-32 {
    margin-left: 32px;
    margin-right: 32px;
  }
  
  .mx-40 {
    margin-left: 40px;
    margin-right: 40px;
  }
  
  .my-32 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  
  .my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .mt-120 {
    margin-top: 120px;
  }
  
  @media (max-width: 767.98px) {
    .mt-120 {
      margin-top: 70px;
    }
  }
  
  /******************************* theme css **********************************/
  .z-2 {
    z-index: 2;
  }
  
  .z-5 {
    z-index: 5;
  }
  
  .z--1 {
    z-index: -1;
  }
  
  .bg-light-white {
    background-color: var(--light-white);
  }
  
  .slider-spacing .slick-list {
    margin: 32px -4px;
    
  }
  
  .slider-spacing .slick-list .slick-slide {
    margin: 0 12px;
  }
  
  .text-italic {
    font-style: italic;
  }
  
  .container-1700 {
    max-width: 1704px;
    margin: 0 auto;
    padding: 0 12px;
  }
  
  @media (max-width: 575.98px) {
    .container-1700 {
      padding: 0 16px;
    }
  }
  
  .container-1400 {
    max-width: 1424px;
    margin: 0 auto;
    padding: 0 12px;
  }
  
  @media (max-width: 575.98px) {
    .container-1400 {
      padding: 0 16px;
    }
  }
  
  .container-1240 {
    max-width: 1250px;
    padding: 0 12px;
    margin: 0 auto;
  }
  
  @media (max-width: 575.98px) {
    .container-1240 {
      padding: 0 16px;
    }
  }
  
  @media (max-width: 575.98px) {
    .container {
      padding: 0 16px;
    }
  }
  
  .text-main-color {
    color: var(--primary-color);
  }
  
  .primary-bg-color {
    background-color: var(--primary-color);
  }
  
  .text-color {
    color: var(--text-color);
  }
  
  .hover-text-color:hover {
    color: var(--text-color);
  }
  
  .gap-60 {
    gap: 60px;
  }
  
  .gap-32 {
    gap: 32px;
  }
  
  @media (max-width: 575.98px) {
    .gap-prt-16 {
      gap: 16px;
    }
  }
  
  hr {
    border: 0;
    border-bottom: 1px solid #EDEDED;
  }
  
  .hm2-font-family {
    font-family: var(--hm2-font-family);
  }
  
  .light-bg {
    background-color: var(--light-bg);
  }
  
  .light-bg-2 {
    background-color: var(--light-bg-2);
  }
  
  .theme-form {
    padding: 40px;
    border: 1px solid var(--border-color);
  }
  
  .theme-input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 14px 24px;
    background-color: var(--light-bg-2);
    font-weight: 300;
  }
  
  .theme-form label {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
  }
  
  .theme-form .theme-input {
    width: 100%;
    display: block;
    background-color: transparent;
    border: 1px solid var(--border-color);
    font-weight: 300;
  }
  
  .theme-form .theme-input:focus {
    border-color: var(--primary-color);
  }
  
  .help-box {
    border: 1px solid var(--border-color);
    padding: 32px 40px;
  }
  
  .mood-multiply {
    mix-blend-mode: multiply;
  }
  
  .secondary-text-color {
    color: var(--secondary-color);
  }
  
  #product_view .modal-dialog {
    max-width: 1300px;
  }
  
  #product_view .modal-dialog .modal-content {
    padding: 24px;
  }
  
  #product_view .modal-dialog .btn-close {
    position: absolute;
    right: 12px;
    top: 12px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 2;
  }
  
  #product_view .modal-dialog .vr-product-thumb {
    height: 560px;
    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;
  }
  
  @-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
  
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
  
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @-webkit-keyframes theme_fadeInUp {
    0% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    50% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes theme_fadeInUp {
    0% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    50% {
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes ripple-white {
    0% {
      -webkit-box-shadow: 0 0 0 0 var(--white-color);
      box-shadow: 0 0 0 0 var(--white-color);
    }
  
    50% {
      -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }
  
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
  }
  
  @keyframes ripple-white {
    0% {
      -webkit-box-shadow: 0 0 0 0 var(--white-color);
      box-shadow: 0 0 0 0 var(--white-color);
    }
  
    50% {
      -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }
  
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
  }
  
  @-webkit-keyframes theme-scale-up {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @keyframes theme-scale-up {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
  }
  
  @-webkit-keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
  
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
  
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
  
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
  
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
  
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
  
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
  
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
  
    90% {
      -webkit-transform: translate(1px, 2px) rotate(0deg);
      transform: translate(1px, 2px) rotate(0deg);
    }
  
    100% {
      -webkit-transform: translate(1px, -2px) rotate(-1deg);
      transform: translate(1px, -2px) rotate(-1deg);
    }
  }
  
  @keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
  
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
  
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
  
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
  
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
  
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
  
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
  
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
  
    90% {
      -webkit-transform: translate(1px, 2px) rotate(0deg);
      transform: translate(1px, 2px) rotate(0deg);
    }
  
    100% {
      -webkit-transform: translate(1px, -2px) rotate(-1deg);
      transform: translate(1px, -2px) rotate(-1deg);
    }
  }
  
  @-webkit-keyframes toTopFromBottom {
    49% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
    }
  
    51% {
      opacity: 1;
    }
  }
  
  @keyframes toTopFromBottom {
    49% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
    }
  
    51% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes loading {
    0% {
      width: 0;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @keyframes loading {
    0% {
      width: 0;
    }
  
    100% {
      width: 100%;
    }
  }
  
  /******************************** components ******************************/
  /******************* header section *******************/
  .header-section {
    background-color: #E31013;
  }
  
  .header-infobar {
    padding: 11px 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
  }
  
  .header-infobar p {
    display: inline-block;
    position: relative;
  }
  
  .header-infobar p::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -18px;
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
  }
  
  .header-infobar .infobar-link {
    color: var(--primary-color);
    position: relative;
  }
  
  .header-infobar .infobar-link::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -30px;
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
  }
  
  .header-infobar .infobar-link::after {
    content: '';
    position: absolute;
    top: -18px;
    right: -30px;
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
  }
  
  .header-infobar .infobar-link:hover {
    color: var(--secondary-color);
  }
  
  .header-infobar .header-socials a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .header-infobar .header-socials a:hover {
    color: var(--secondary-color);
  }
  
  @media (max-width: 991.98px) {
    .header-infobar p::after {
      display: none;
    }
  
    .header-infobar .infobar-link::before {
      display: none;
    }
  }
  
  @media (max-width: 1199.98px) {
    .header-navbar {
      padding: 12px 0;
    }
  }
  
  .header-navigation ul li {
    display: inline-block;
  }
  
  .header-navigation ul li a {
    display: block;
    color: var(--headings-color);
    font-weight: 600;
    text-transform: capitalize;
    /* padding: 41px 15px; */
  }
  
  
  .header-navigation ul li.has-submenu {
    position: relative;
  }
  
  .header-navigation ul li.has-submenu::after {
    /* content: '\f107'; */
    font-family: 'FontAwesome';
    position: absolute;
    right: 4px;
    top: 42px;
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    font-size: 14px;
  }
  
  .header-navigation ul li.has-submenu .submenu-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    width: 220px;
    background-color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: 2;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
  }
  
  .header-navigation ul li.has-submenu .submenu-wrapper li {
    display: block;
  }
  
  .header-navigation ul li.has-submenu .submenu-wrapper li+li {
    border-top: 1px solid var(--border-color);
  }
  
  .header-navigation ul li.has-submenu .submenu-wrapper li a {
    padding: 15px 16px;
    text-transform: capitalize;
  }
  
  .header-navigation ul li.has-submenu .submenu-wrapper li a:hover {
    padding-left: 20px;
    color: var(--secondary-color);
  }
  
  .header-navigation ul li.has-submenu:hover::after {
    color: var(--secondary-color);
  }
  
  .header-navigation ul li.has-submenu:hover>ul {
    top: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
  }
  
  .header-navigation ul li.has-submenu:hover>.ur-megamenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  
  .header-navigation ul li.has-submenu:hover>.megamenu-2 {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  
  .header-navigation ul li.fullwidth-megamenu:hover .megamenu-3 {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 1px);
  }
  
  .header-navigation ul li:hover>a {
    color: var(--secondary-color);
  }
  
  @media (max-width: 1560px) {
    .header-navigation>ul>li>a {
      padding: 26px 8px;
    }
  
    .header-navigation>ul>li.has-submenu::after {
      right: 0;
    }
  }
  
  @media (min-width: 1560px) and (max-width: 1647px) {
    .header-navigation ul li a {
      padding: 26px 8px;
    }
  
    .header-navigation>ul>li.has-submenu::after {
      right: 0;
    }
  }
  
  @media (max-width: 1399.98px) {
    .header-navigation>ul>li>a {
      padding: 41px 5px;
      font-size: 14px; 
    }
  
  
  
    
  
  
  
    .header-navigation>ul>li.has-submenu::after {
      right: -2px;
    }
  }
  
  .header-search button svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-search button svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-search button:hover svg {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
  
  .header-search button:hover svg path {
    fill: var(--secondary-color);
  }
  
  .header-wishlist a svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-wishlist a svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-wishlist a:hover svg {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
  
  .header-wishlist a:hover svg path {
    fill: var(--secondary-color);
  }
  
  .header-cart {
    cursor: pointer;
  }
  
  .header-cart .cart-icon {
    position: relative;
  }
  
  .header-cart .cart-icon svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-cart .cart-icon svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-cart .cart-icon .cart-item {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #236355;
    border-radius: 50%;
    right: -7px;
    bottom: -5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 12px;
  }
  
  .header-cart:hover {
    color: var(--secondary-color);
  }
  
  .header-cart:hover .cart-icon svg {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
  
  .header-cart:hover .cart-icon svg path {
    fill: var(--secondary-color);
  }
  
  .header-toggle-btn {
    vertical-align: middle;
  }
  
  .header-toggle-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .header-toggle-btn span+span {
    margin-top: 6px;
  }
  
  .header-toggle-btn:hover span:not(:nth-child(2)) {
    width: 15px;
  }
  
  /*********************** header style 2 **************************/
  .hm2-header {
    position: relative;
    z-index: 10;
  }
  
  .hm2-header .header-infobar {
    border-bottom: 1px solid #7C2626;
  }
  
  .hm2-header .header-infobar p svg path {
    fill: var(--white-color);
  }
  
  .hm2-header .header-infobar p::after {
    background-color: #E31013;
  }
  
  .hm2-header .header-infobar .infobar-link {
    color: var(--white-color);
  }
  
  .hm2-header .header-infobar .infobar-link:hover {
    color: var(--text-color);
  }
  
  .hm2-header .header-infobar .infobar-link::before {
    background-color: #7C2626;
  }
  
  .hm2-header .header-infobar .infobar-link::after {
    background-color: #7C2626;
  }
  
  .hm2-header .header-infobar .header-socials a {
    color: var(--white-color);
  }
  
  .hm2-header .header-infobar .header-socials a:hover {
    color: var(--text-color);
  }
  
  .hm2-header .header-navbar {
    border-bottom: 1px solid #dc0909;
  }
  
  .hm2-header .header-navigation>ul>li>a {
    color: var(--white-color);
    font-size: 16px;
  }
  
  @media (max-width: 1399.98px) {
    .hm2-header .header-navigation>ul>li>a{
        color: var(--white-color);
        font-size: 14px;
    }
  }
  
  @media (max-width: 1560px) {
    .hm2-header .header-navigation>ul>li>a{
      color: var(--white-color);
      font-size: 15px;
   }
  }
  
  @media (min-width: 1200px) and (max-width: 1265px) {
    .hm2-header .header-navigation>ul>li>a {
      color: var(--white-color);
      font-size: 14px;
   }
  }
  
  @media (min-width: 1648px) and (max-width: 1667px) {
    .hm2-header .header-navigation>ul>li>a {
      color: var(--white-color);
      font-size: 15px;
   }
  }
  
  .hm2-header .header-navigation>ul>li:hover>a {
    color: var(--text-color);
  }
  
  .hm2-header .header-navigation .has-submenu::after {
    color: var(--white-color);
  }
  
  .hm2-header .header-navigation .has-submenu:hover::after {
    color: var(--text-color);
  }
  
  .hm2-header .header-navigation .has-submenu .submenu-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .hm2-header .header-navigation .ur-megamenu {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .hm2-header .header-right .header-icons .header-search button svg path {
    fill: var(--white-color);
  }
  
  .hm2-header .header-right .header-icons .header-search button:hover svg path {
    fill: var(--text-color);
  }
  
  .hm2-header .header-right .header-icons .header-wishlist a svg path {
    fill: var(--white-color);
  }
  
  .hm2-header .header-right .header-icons .header-wishlist a:hover svg path {
    fill: var(--text-color);
  }
  
  .hm2-header .header-right .header-icons .header-cart .cart-icon svg path {
    fill: var(--white-color);
  }
  
  .hm2-header .header-right .header-icons .header-cart .cart-amount {
    color: var(--white-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-header .header-right .header-icons .header-cart:hover .cart-icon svg path {
    fill: var(--text-color);
  }
  
  .hm2-header .header-right .header-icons .header-cart:hover .cart-amount {
    color: var(--text-color);
  }
  
  .hm2-header .header-right .header-toggle-btn span {
    background-color: var(--white-color);
  }
  
  .hm2-header.sticky-header.sticky-on {
    border-bottom: 0;
    background-color: #db1515f0 !important;
  }
  
  /************************** header style 3 *******************************/
  .hm3-header-info {
    padding: 14px 0;
    background-color: #D8D2BA;
  }
  
  .hm3-header-info a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
  }
  
  .hm3-header-info a:hover {
    color: var(--secondary-color);
  }
  
  .hm3-header-middle {
    padding: 40px 0;
  }
  
  .hm3-header-middle .hm3-header-search label {
    color: var(--primary-color);
    font-size: 14px;
  }
  
  .hm3-header-middle .hm3-header-search input {
    border: 0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    background-color: transparent;
  }
  
  .hm3-header-middle .hm3-header-search input::-webkit-input-placeholder {
    color: var(--primary-color);
  }
  
  .hm3-header-middle .hm3-header-search input:-ms-input-placeholder {
    color: var(--primary-color);
  }
  
  .hm3-header-middle .hm3-header-search input::-ms-input-placeholder {
    color: var(--primary-color);
  }
  
  .hm3-header-middle .hm3-header-search input::placeholder {
    color: var(--primary-color);
  }
  
  .hm3-header-middle .hm3-header-select {
    margin-right: 60px;
    position: relative;
  }
  
  .hm3-header-middle .hm3-header-select select {
    background-color: transparent;
  }
  
  .hm3-header-middle .hm3-header-select::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 19px;
    background-color: #C7C7C7;
  }
  
  .hm3-header-middle .hm3-header-cart {
    margin-right: 30px;
  }
  
  .hm3-header-select {
    gap: 0;
  }
  
  .hm3-header-select span,
  .hm3-header-select select {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .hm3-header-select .form-select {
    padding-left: 3px;
    padding-right: 29px;
    color: var(--primary-color);
  }
  
  .hm3-header-cart button {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-header-cart button:hover {
    color: var(--secondary-color);
  }
  
  .hm3-header-wishlist i {
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-header-wishlist i:hover {
    color: var(--secondary-color);
  }
  
  .hm3-header-navbar .hm3-navbar-wrapper {
    border-top: 1px solid #DBDBDB;
  }
  
  .hm3-header-navbar .header-navigation>ul>li:first-child>a {
    padding-left: 0;
  }
  
  .hm3-header-navbar .header-navigation>ul>li a {
    padding: 26px 20px;
    font-size: 14px;
  }
  
  .hm3-header-navbar .header-navigation>ul>li.has-submenu::after {
    top: 26px;
  }
  
  .hm3-header-navbar .header-navigation>ul>li.has-submenu .megamenu-2 {
    left: -180px;
  }
  
  .hm3-header-navbar .header-toggle-btn span {
    width: 60px;
  }
  
  @media (max-width: 991.98px) {
    .hm3-header-navbar .hm3-navbar-wrapper {
      border-top: 0;
    }
  }
  
  /********************** header search box *******************/
  .header-search-box {
    position: fixed;
    padding: 80px 60px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    text-align: center;
  }
  
  .header-search-box form {
    width: 80%;
    display: inline-block;
  }
  
  .header-search-box form label {
    width: 100%;
    position: relative;
  }
  
  .header-search-box form label i {
    position: absolute;
    left: 15px;
    top: 18px;
    font-size: 14px;
  }
  
  .header-search-box form label input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 12px 40px;
  }
  
  .header-search-box .search-close {
    position: absolute;
    right: 35px;
    top: 8px;
    color: var(--text-color);
  }
  
  .header-search-box .search-close:hover {
    color: var(--danger-color);
  }
  
  .header-search-box.active {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 575.98px) {
    .header-search-box {
      padding: 32px 24px;
    }
  
    .header-search-box form {
      width: 100%;
    }
  
    .header-search-box .search-close {
      right: 8px;
    }
  }
  
  /************************ mobile menu start ****************/
  .mobile-menu {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -310px;
    background-color: var(--white-color);
    z-index: 100;
    padding: 60px 24px;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .mobile-menu .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--primary-color);
  }
  
  .mobile-menu .close:hover {
    color: var(--secondary-color);
  }
  
  .mobile-menu .logo {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .mobile-menu .mobile-nav-menu {
    margin-top: 32px;
  }
  
  .mobile-menu .mobile-nav-menu li {
    display: block;
  }
  
  .mobile-menu .mobile-nav-menu li+li {
    border-top: 1px solid var(--border-color);
  }
  
  .mobile-menu .mobile-nav-menu li a {
    display: block;
    color: var(--primary-color);
    padding: 10px 0;
    font-weight: 500;
  }
  
  .mobile-menu .mobile-nav-menu li a:hover {
    color: var(--secondary-color);
  }
  
  .mobile-menu .mobile-nav-menu li.has-submenu {
    position: relative;
  }
  
  .mobile-menu .mobile-nav-menu li.has-submenu>i {
    position: absolute;
    right: 0;
    top: 6px;
    padding: 8px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .mobile-menu .mobile-nav-menu li.has-submenu>i.icon-rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .mobile-menu .mobile-nav-menu li.has-submenu>.submenu-wrapper {
    padding-left: 15px;
    display: none;
  }
  
  .mobile-menu .mobile-search input {
    width: 100%;
    padding: 13px 18px;
    width: 100%;
    border: 1px solid var(--border-color);
  }
  
  .mobile-menu .mobile-search button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 14px 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }
  
  .mobile-menu .mobile-search button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .mobile-menu .mobile-search button:hover {
    color: var(--white-color);
  }
  
  .mobile-menu .mobile-search button:hover::before {
    height: 100%;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .ur-search-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-overlay);
    z-index: 100;
    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;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .ur-search-form .close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 18px;
    color: var(--white-color);
  }
  
  .ur-search-form .close:hover {
    color: var(--secondary-color);
  }
  
  .ur-search-form form {
    background-color: var(--white-color);
  }
  
  .ur-search-form form input {
    background-color: var(--white-color);
  }
  
  .ur-search-form form button {
    border-left: 1px solid var(--border-color);
    width: 60px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    font-weight: 700;
  }
  
  .ur-search-form form button:hover {
    color: var(--secondary-color);
  }
  
  .ur-search-form.active {
    opacity: 1;
    visibility: visible;
  }
  
  /****************** offcanvus start **************/
  .offcanvus-box {
    width: 425px;
    z-index: 100;
    top: 0;
    right: -430px;
    height: 100vh;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .offcanvus-box.active {
    right: 0;
  }
  
  .offcanvus-box .offcanvus-close {
    position: absolute;
    left: 30px;
    top: 30px;
    color: var(--primary-color);
  }
  
  .offcanvus-box .offcanvus-close:hover {
    color: var(--secondary-color);
  }
  
  .offcanvus-box .content-top {
    text-align: center;
    padding: 120px 60px 100px;
  }
  
  .offcanvus-box .content-top p {
    line-height: 26px;
  }
  
  .offcanvus-box .offcanvus-gallery {
    padding: 0 40px;
    gap: 20px;
  }
  
  .offcanvus-box .offcanvus-gallery a {
    width: calc(50% - 10px);
    overflow: hidden;
  }
  
  .offcanvus-box .offcanvus-gallery a img {
    max-width: 100%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .offcanvus-box .offcanvus-gallery a img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .offcanvus-box .offcanvus-newsletter {
    padding: 100px 40px;
  }
  
  .offcanvus-box .offcanvus-newsletter input {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border-color);
  }
  
  .offcanvus-box .offcanvus-bottom {
    border-top: 1px solid var(--gray-color);
    padding: 20px 40px;
  }
  
  .offcanvus-box .user-links a {
    color: var(--primary-color);
  }
  
  .offcanvus-box .user-links a:hover {
    color: var(--secondary-color);
  }
  
  .language-switcher button {
    font-size: 15px;
  }
  
  .language-switcher .dropdown-menu {
    border-radius: 0;
    border-color: var(--border-color);
  }
  
  .language-switcher .dropdown-menu li+li {
    border-top: 1px solid var(--border-color);
  }
  
  .language-switcher .dropdown-menu li a {
    padding: 4px 12px;
    display: block;
    color: var(--primary-color);
    font-size: 15px;
  }
  
  .language-switcher .dropdown-menu li a img {
    margin-right: 8px;
    max-width: 29px;
  }
  
  /*********************** cart drawer ******************/
  .cart-drawer {
    top: 0;
    right: -490px;
    background-color: var(--white-color);
    z-index: 200;
    width: 480px;
    height: 100vh;
    padding: 30px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-y: scroll;
  }
  
  .cart-drawer .cart-list {
    margin-top: 100px;
    padding-bottom: 15px;
  }
  
  .cart-drawer .cart-list::-webkit-scrollbar {
    display: none;
  }
  
  .cart-drawer li {
    position: relative;
  }
  
  .cart-drawer li+li {
    margin-top: 40px;
  }
  
  .cart-drawer li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .cart-drawer .feature-image {
    max-width: 110px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
  }
  
  .cart-drawer .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cart-drawer .feature-image:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .cart-drawer h6 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cart-drawer h6:hover {
    color: var(--secondary-color);
  }
  
  .cart-drawer .quantity {
    margin-top: 10px;
  }
  
  .cart-drawer .quantity input {
    max-width: 50px;
    border: 1px solid var(--border-color);
    padding: 2px;
    text-align: center;
  }
  
  .cart-drawer .quantity .step-btns {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    border-left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  
  .cart-drawer .quantity .step-btns::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .cart-drawer .quantity .step-btns button {
    font-size: 10px;
    padding: 0;
    display: block;
  }
  
  .cart-drawer .close {
    font-size: 14px;
    color: var(--primary-color);
  }
  
  .cart-drawer .close:hover {
    color: var(--secondary-color);
  }
  
  .cart-drawer .drawer-close {
    font-size: 15px;
    color: var(--primary-color);
  }
  
  .cart-drawer .drawer-close:hover {
    color: var(--secondary-color);
  }
  
  .cart-drawer .drawer-bottom {
    margin-top: 100px;
    padding-top: 40px;
  }
  
  .cart-drawer .drawer-bottom .progress-line {
    background-color: #F6F6F6;
    margin-top: 24px;
    height: 6px;
    width: 100%;
    position: relative;
  }
  
  .cart-drawer .drawer-bottom .progress-line .progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 73%;
    height: 6px;
    background-color: var(--primary-color);
  }
  
  .cart-drawer .drawer-bottom .progress-line .progress-fill span {
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -15px;
    background-color: var(--white-color);
  }
  
  .cart-drawer .outline-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
  }
  
  .cart-drawer .outline-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cart-drawer .outline-btn:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
  }
  
  .cart-drawer .outline-btn:hover::before {
    height: 100%;
  }
  
  .cart-drawer.active {
    right: 0;
  }
  
  @media (max-width: 460px) {
    .cart-drawer {
      width: 360px;
    }
  }
  
  /******************** header style 4 ********************/
  .vr4-infobar {
    padding: 13px 0;
  }
  
  .vr4-infobar .info-right {
    gap: 40px;
  }
  
  .vr4-header-middle {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .vr4-header-middle .header-right {
    gap: 40px;
  }
  
  .vr4-header-search {
    max-width: 150px;
  }
  
  .vr4-header-search label {
    left: 0;
    top: 3px;
    font-size: 15px;
  }
  
  .vr4-header-search input {
    border: 0;
    padding-left: 20px;
    color: var(--headings-color);
    width: 100%;
  }
  
  .vr4-header-search input::-webkit-input-placeholder {
    color: var(--text-color);
  }
  
  .vr4-header-search input:-ms-input-placeholder {
    color: var(--text-color);
  }
  
  .vr4-header-search input::-ms-input-placeholder {
    color: var(--text-color);
  }
  
  .vr4-header-search input::placeholder {
    color: var(--text-color);
  }
  
  .vr4-header-wishlist a {
    color: var(--text-color);
  }
  
  .vr4-header-wishlist a:hover {
    color: var(--secondary-color);
  }
  
  .vr4-header-cart button {
    color: var(--text-color);
  }
  
  .vr4-header-cart button span {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    display: inline-block;
  }
  
  .vr4-header-cart button span svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-header-cart button:hover {
    color: var(--secondary-color);
  }
  
  .vr4-header-cart button:hover svg path {
    fill: var(--secondary-color);
  }
  
  .vr4-header-toggle {
    padding: 0 20px;
    position: relative;
  }
  
  .vr4-header-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: -38px;
    width: 1px;
    height: calc(100% + 76px);
    background-color: var(--border-color);
  }
  
  .vr4-header-toggle::after {
    content: '';
    position: absolute;
    right: 0;
    top: -38px;
    width: 1px;
    height: calc(100% + 76px);
    background-color: var(--border-color);
  }
  
  .vr4-nav-menu>ul>li:hover>a {
    color: var(--secondary-color);
  }
  
  .vr4-nav-menu>ul>li:first-child>a {
    padding-left: 0;
  }
  
  .vr4-nav-menu>ul>li .megamenu-2 {
    left: -180px;
  }
  
  .vr4-header-select {
    gap: 30px;
  }
  
  .vr4-header-select select {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding-right: 30px;
  }
  
  .vr4-header-select select.vr4-language-select {
    max-width: 100px;
  }
  
  .vr4-header-select select.vr4-currency-select {
    max-width: 70px;
  }
  
  /******************* header style 5 **************/
  .vr5-header-section {
    background-color: var(--primary-color);
  }
  
  .vr5-header-section .header-right .header-icons button svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-header-section .header-right .header-icons button svg path {
    fill: var(--white-color);
  }
  
  .vr5-header-section .header-right .header-icons button:hover svg path {
    fill: var(--secondary-color);
  }
  
  .vr5-header-section .header-right .header-icons a svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-header-section .header-right .header-icons a svg path {
    fill: var(--white-color);
  }
  
  .vr5-header-section .header-right .header-icons a:hover svg path {
    fill: var(--secondary-color);
  }
  
  .vr5-header-section .header-right .header-icons .cart-icon {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-header-section .header-right .header-icons .cart-icon svg path {
    fill: var(--white-color);
  }
  
  .vr5-header-section .header-right .header-icons .cart-icon:hover svg path {
    fill: var(--secondary-color);
  }
  
  .vr5-header-section .header-right .header-toggle-btn span {
    background-color: var(--white-color);
  }
  
  .vr5-header-section .header-navigation>ul li.has-submenu::after {
    color: var(--white-color);
  }
  
  .vr5-header-section .header-navigation>ul li.has-submenu .submenu-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .vr5-header-section .header-navigation>ul li.has-submenu .ur-megamenu {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .vr5-header-section .header-navigation>ul li.has-submenu:hover::after {
    color: var(--secondary-color);
  }
  
  @media (max-width: 1199.98px) {
    .vr5-header-section {
      padding: 16px 0;
    }
  }
  
  .vr5-header-navigation>ul>li>a {
    color: var(--white-color);
  }
  
  .vr5-header-right {
    gap: 100px;
  }
  
  .vr5-header-right .header-toggle {
    position: relative;
  }
  
  .vr5-header-right .header-toggle::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: #262626;
  }
  
  @media (max-width: 1560px) {
    .vr5-header-right {
      gap: 60px;
    }
  
    .vr5-header-right .header-toggle::before {
      left: -30px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .vr5-header-right {
      gap: 24px;
    }
  
    .vr5-header-right .header-toggle::before {
      display: none;
    }
  }
  
  /********************* header style 6 ******************/
  .vr6-header-topbar {
    padding: 13px 0;
  }
  
  .vr6-header-topbar p {
    letter-spacing: 0.02em;
  }
  
  .vr6-infobar-left {
    gap: 30px;
  }
  
  .vr6-infobar-left div {
    position: relative;
  }
  
  .vr6-infobar-left div::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: var(--primary-color);
  }
  
  .vr6-infobar {
    border-bottom: 1px solid #E8E8E8;
  }
  
  .vr6-infobar select {
    border: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    width: auto;
    display: inline-block;
    padding-right: 20px;
    background-position: right 6px center;
  }
  
  .vr6-infobar p a {
    color: var(--primary-color);
  }
  
  .vr6-infobar p a:hover {
    color: var(--secondary-color);
  }
  
  .vr6-infobar-nav {
    display: block;
    text-align: right;
  }
  
  .vr6-infobar-nav li {
    display: inline-block;
  }
  
  .vr6-infobar-nav li a {
    display: block;
    padding: 16px 10px;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .vr6-infobar-nav li a:hover {
    color: var(--secondary-color);
  }
  
  .vr6-header-middle {
    padding: 16px 0;
    border-bottom: 1px solid #E8E8E8;
  }
  
  .vr6-header-search-form {
    max-width: 700px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(100% - 60px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #EBEBEB;
    padding: 10px;
  }
  
  .vr6-header-search-form input {
    width: 100%;
    border: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  
  .vr6-header-search-form button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
  }
  
  .vr6-header-navbar {
    border-bottom: 1px solid #EBEBEB;
  }
  
  @media (max-width: 1199.98px) {
    .vr6-header-navbar {
      padding: 15px 0;
    }
  }
  
  .vr6-header-custom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .vr6-header-custom-row .vr6-category-menu {
    width: 19%;
  }
  
  .vr6-header-custom-row .vr6-nav-menu {
    width: 60%;
  }
  
  .vr6-header-custom-row .vr6-header-timing {
    width: 21%;
  }
  
  @media (max-width: 1199.98px) {
    .vr6-header-custom-row .vr6-category-menu {
      width: 30%;
    }
  
    .vr6-header-custom-row .vr6-header-timing {
      width: 70%;
    }
  }
  
  .vr6-category-menu {
    position: relative;
  }
  
  .vr6-category-menu::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #E8E8E8;
  }
  
  .vr6-category-menu>a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 16px 0;
  }
  
  .vr6-category-menu>ul {
    background-color: #F8F7F3;
    padding: 15px 0;
    position: absolute;
    top: calc(100% + 24px);
    width: 100%;
  }
  
  .vr6-category-menu>ul li {
    display: block;
  }
  
  .vr6-category-menu>ul li.has-megamenu:hover .vr6-category-menu-box {
    opacity: 1;
    visibility: visible;
    left: 100%;
  }
  
  .vr6-category-menu>ul li a {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 13.5px 30px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .vr6-category-menu>ul li a>i {
    float: right;
  }
  
  .vr6-category-menu>ul li:hover>a {
    color: var(--secondary-color);
  }
  
  .vr6-category-menu>ul li:hover>a i {
    color: var(--secondary-color);
  }
  
  @media (max-width: 1199.98px) {
    .vr6-category-menu>ul {
      display: none;
    }
  }
  
  .vr6-category-menu-box {
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
    width: 495px;
    background-color: var(--white-color);
    z-index: 2;
    padding: 40px;
    border: 1px solid #EDEDED;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-category-menu-box .menu-box-top .menu-box-top-left {
    width: 50%;
  }
  
  .vr6-category-menu-box .menu-box-top h6 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .vr6-category-menu-box .menu-list li a {
    padding: 8px 0;
    text-transform: capitalize;
    color: var(--primary-color);
    font-size: 16px;
    position: relative;
  }
  
  .vr6-category-menu-box .menu-list li a::after {
    content: '';
    position: absolute;
    left: 6px;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-category-menu-box .menu-list li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
  }
  
  .vr6-category-menu-box .menu-list li a:hover::after {
    width: 60px;
  }
  
  .vr6-category-menu-box .menu-list-banner .circle-badge {
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
    position: absolute;
    right: 30px;
    top: 30px;
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content a.title {
    padding: 0;
    text-transform: capitalize;
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content h6 {
    font-size: 22px;
    font-weight: 600;
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content h6:hover {
    color: var(--secondary-color);
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content a.explore {
    color: var(--white-color);
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    display: inline-block;
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content a.explore::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-category-menu-box .menu-list-banner .vr6-menu-banner-content a.explore:hover::before {
    width: 0;
  }
  
  .vr6-category-menu-box .megamenu-2 {
    position: initial;
    width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .vr6-category-menu-box .megamenu-2 .pages-list li a {
    padding: 7px 0;
  }
  
  .megamenu-3 {
    position: absolute;
    left: 20px;
    top: calc(100% + 10px);
    background-color: var(--white-color);
    max-width: 1300px;
    width: calc(100% - 60px);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: 10;
  }
  
  
  .megamenu-column{
    margin-bottom: 10px;
  }
  
  
  .megamenu-3 .menu-list li {
    display: block;
  }
  
  .megamenu-3 .menu-list li a {
    padding: 5px 0;
    text-transform: initial;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    position: relative;
  }
  
  .megamenu-3 .menu-list li a:hover {
    padding-left: 6px;
  }
  
  /* Adjusting spacing between subcategory title and menu list */
  .megamenu-3 .subcategory-title {
    margin-bottom: 5px; /* You can adjust this value */
    font-weight: 600;
  }
  
  /* Ensuring that menu list doesn't have unnecessary space */
  .megamenu-3 .menu-list {
    padding-top: 5px; /* Adjust as necessary */
    margin-bottom: 0;  /* Ensure no extra space if no child categories */
  }
  
  .megamenu-3 .menu-list li {
    display: block;
  }
  
  .megamenu-3 .menu-list li a {
    padding: 2px 0;
    text-transform: initial;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    position: relative;
  }
  
  .megamenu-3 .menu-list li a:hover {
    padding-left: 6px;
  }
  
  /* Optionally, if there are subcategories without childcategories, handle them differently */
  .megamenu-3 .menu-list.empty {
    padding-top: 0; /* No padding for empty menu list */
    margin-top: 10px; /* Add some margin to push down if no child categories */
  }
  
  /* Style the arrow */
  .has-children-arrow {
    font-size: 12px;
    color: #888; /* Adjust color as needed */
    margin-left: 5px; /* Space between text and arrow */
  }
  
  /* Optional: Different styling for subcategories with child menus */
  .subcategory-title {
    display: flex;
    align-items: center; /* Align arrow with the text */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  .vr6-nav-menu ul li {
    display: inline-block;
  }
  
  .vr6-nav-menu ul li a {
    display: block;
    padding: 16px 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
  }
  
  .vr6-nav-menu>ul>li.has-submenu::after {
    top: 17px;
  }
  
  /********************* megamenu ********************/
  .ur-megamenu {
    position: absolute;
    background-color: var(--white-color);
    top: calc(100% + 10px);
    left: -500px;
    z-index: 10;
    width: 1320px;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
  }
  
  .ur-megamenu .megamenu-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column {
    width: 15%;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column.border-r {
    position: relative;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column.border-r::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
  }
  
  .ur-megamenu .megamenu-row .megamenu-column.banner {
    width: 20%;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column .column-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column .pages-list li {
    display: block;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column .pages-list li a {
    padding: 9px 0;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
  }
  
  .ur-megamenu .megamenu-row .megamenu-column .pages-list li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
  }
  
  @media (max-width: 1560px) {
    .ur-megamenu {
      left: -450px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .ur-megamenu {
      width: 1090px;
      padding: 45px;
      left: -360px;
    }
  }
  
  .megamenu-2 {
    position: absolute;
    width: 992px;
    background-color: var(--white-color);
    left: -500px;
    z-index: 10;
    padding: 24px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    top: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .megamenu-2 .megamenu-column.border-r {
    border-right: 1px solid var(--border-color);
  }
  
  .megamenu-2 .megamenu-column ul li {
    display: block;
  }
  
  .megamenu-2 .megamenu-column ul li a {
    padding: 12px 0;
    text-transform: initial;
    font-weight: 500;
    font-size: 16px;
  }
  
  .megamenu-2 .megamenu-column ul li a:hover {
    padding-left: 6px;
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li+li {
    margin-top: 30px;
    position: relative;
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li+li::before {
    content: '';
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li .feature-image {
    width: 160px;
    overflow: hidden;
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li .feature-image img:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li a {
    padding: 0;
    text-transform: initial;
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li a h6 {
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .megamenu-2 .sidebar-widget .latest-posts li a h6:hover {
    color: var(--secondary-color);
  }
  
  .vr6-category-sidebar {
    background-color: var(--white-color);
    padding: 30px 0;
    padding-top: 80px;
    position: fixed;
    top: 0;
    left: -330px;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 100;
    width: 320px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-category-sidebar .close-ct-menu {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--primary-color);
  }
  
  .vr6-category-sidebar .close-ct-menu:hover {
    color: var(--secondary-color);
  }
  
  .vr6-category-sidebar ul li {
    display: block;
  }
  
  .vr6-category-sidebar ul li a {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    padding: 15px 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
  }
  
  .vr6-category-sidebar ul li.has-submenu {
    position: relative;
  }
  
  .vr6-category-sidebar ul li.has-submenu>i {
    position: absolute;
    right: 12px;
    top: 6px;
    padding: 8px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-category-sidebar ul li.has-submenu>i.icon-rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .vr6-category-sidebar ul li.has-submenu>.submenu-wrapper {
    padding-left: 15px;
    display: none;
  }
  
  .vr6-category-sidebar ul li:hover>a {
    color: var(--secondary-color);
  }
  
  .vr6-category-sidebar ul li:hover>a i {
    color: var(--secondary-color);
  }
  
  .vr6-category-sidebar.active {
    left: 0;
  }
  
  /********************* sticky header ******************/
  .sticky-header.sticky-on {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-animation: 1s fadeInDown;
    animation: 1s fadeInDown;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
  }
  
  .sticky-header.sticky-on .header-infobar {
    display: none !important;
  }
  
  .sticky-header.sticky-on .hm3-header-info {
    display: none !important;
  }
  
  .sticky-header.sticky-on .hm3-header-middle {
    display: none !important;
  }
  
  .sticky-header.sticky-on .hm3-header-navbar .hm3-navbar-wrapper {
    border-top: 0;
  }
  
  .sticky-header.sticky-on .vr4-infobar {
    display: none !important;
  }
  
  .sticky-header.sticky-on .vr4-header-middle {
    display: none;
  }
  
  .sticky-header.sticky-on.vr5-header-section {
    background-color: var(--primary-color) !important;
    border-bottom: 0;
  }
  
  /******************** preloader ******************/
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    z-index: 200;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .preloader h1 {
    font-family: var(--heading-font);
  }
  
  .preloader .preload-progress {
    width: 250px;
    height: 8px;
    border-radius: 30px;
  }
  
  .preloader .preload-progress span {
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 30px;
    background-color: var(--primary-color);
    -webkit-animation: 6s loading;
    animation: 6s loading;
  }
  



  .template-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #161212, #27010c);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto; /* Ensure clicks are enabled */
}

.template-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.template-btn:hover::after {
    opacity: 1;
}

.template-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #feb47b, #ff7e5f);
    color: #fff;
    box-shadow: 0px 10px 20px rgba(255, 126, 95, 0.4);
}






















  
  
  /******************* footer section start ***************************/
  .footer-widget {
    margin-bottom: 50px;
  }
  
  .footer-widget .widget-title {
    text-transform: uppercase;
  }
  
  .footer-widget.subscribe-widget {
    max-width: 460px;
  }
  
  .footer-widget.subscribe-widget h4 {
    line-height: 36px;
  }
  
  .footer-widget.subscribe-widget form {
    width: 100%;
    border: 1px solid var(--primary-color);
    padding: 7px 7px 7px 29px;
  }
  
  .footer-widget.subscribe-widget form label {
    width: 100%;
    position: relative;
  }
  
  .footer-widget.subscribe-widget form label i {
    position: absolute;
    top: 4px;
    left: 0;
  }
  
  .footer-widget.subscribe-widget form label input {
    width: 100%;
    border: 0;
    padding-left: 24px;
  }
  
  .footer-nav-widget .footer-links li {
    display: block;
  }
  
  .footer-nav-widget .footer-links li+li {
    margin-top: 16px;
  }
  
  .footer-nav-widget .footer-links li a {
    display: block;
    color: var(--text-color);
    position: relative;
  }
  
  .footer-nav-widget .footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .footer-nav-widget .footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
  }
  
  .footer-nav-widget .footer-links li a:hover::before {
    opacity: 1;
    color: var(--text-color);
  }
  
  @media (max-width: 575.98px) {
    .footer-nav-widget {
      margin-bottom: 24px;
    }
  
    .footer-nav-widget .widget-title {
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 16px 0;
      position: relative;
      margin-bottom: 0;
    }
  
    .footer-nav-widget .widget-title::after {
      content: '+';
      position: absolute;
      right: 10px;
      top: 15px;
    }
  
    .footer-nav-widget .footer-links {
      display: none;
      padding-top: 30px;
    }
  }
  
  .footer-contact-widget .footer-address li {
    color: var(--text-color);
  }
  
  .footer-contact-widget .footer-address li a {
    color: var(--text-color);
  }
  
  .footer-contact-widget .footer-address li a:hover {
    color: var(--primary-color);
  }
  
  .footer-contact-widget .footer-address li+li {
    margin-top: 16px;
  }
  
  .footer-socials {
    gap: 36px;
  }
  
  .footer-socials a {
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .footer-socials a i {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .footer-socials a:hover {
    color: var(--secondary-color);
  }
  
  .footer-socials a:hover i {
    -webkit-animation: 0.3s toTopFromBottom;
    animation: 0.3s toTopFromBottom;
  }
  
  .footer-copyright {
    margin-top: 70px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-copyright p a {
    color: var(--text-color);
  }
  
  .footer-copyright p a:hover {
    color: var(--secondary-color);
  }
  
  .copyright-links a {
    color: var(--primary-color);
  }
  
  .copyright-links a:hover {
    color: var(--secondary-color);
  }
  
  /****************** footer style 2 *******************/
  .hm2-footer-top {
    margin-bottom: 90px;
  }
  
  .hm2-sb-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  
  .hm2-sb-form input {
    width: 100%;
    background-color: #F6F6F6;
    border: 0;
    padding: 20px 24px;
  }
  
  .hm2-sb-form .template-btn {
    width: 224px;
    text-transform: uppercase;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
  }
  
  @media (max-width: 575.98px) {
    .hm2-sb-form .template-btn {
      width: auto;
    }
  }
  
  .hm2-footer-widget .footer-address a {
    color: var(--text-color);
  }
  
  .hm2-footer-widget .footer-address a:hover {
    color: var(--primary-color);
  }
  
  .hm2-footer-widget .footer-address a.mail {
    position: relative;
    display: inline-block;
    margin-top: 8px;
  }
  
  .hm2-footer-widget .footer-address a.mail::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-footer-widget .footer-address a.mail:hover::before {
    width: 0;
  }
  
  .hm2-footer-copyright {
    padding: 30px 0;
    border-top: 1px solid #D4D4D4;
  }
  
  .hm2-footer-copyright p a {
    color: var(--text-color);
  }
  
  .hm2-footer-copyright p a:hover {
    color: var(--secondary-color);
  }
  
  .footer-dark .footer-widget .widget-title {
    color: var(--white-color);
  }
  
  .footer-dark .footer-widget .footer-links li a:hover {
    color: var(--white-color);
  }
  
  .footer-dark .footer-widget .footer-links li a:hover::before {
    background-color: var(--white-color);
  }
  
  .footer-dark .subscribe-widget form {
    border-color: #222222;
  }
  
  .footer-dark .subscribe-widget form button {
    background-color: var(--white-color);
    color: var(--primary-color);
  }
  
  .footer-dark .footer-copyright {
    border-color: #222222;
  }
  
  .footer-dark .footer-copyright .copyright-links a {
    color: var(--white-color);
  }
  
  .vr5-footer .footer-copyright {
    border-top: 1px solid var(--primary-color);
  }
  
  .vr5-footer-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  
  .vr5-footer-gallery .single-item {
    z-index: 1;
  }
  
  .vr5-footer-gallery .single-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    z-index: 1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-footer-gallery .single-item .popup-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    color: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
  }
  
  .vr5-footer-gallery .single-item .popup-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .vr5-footer-gallery .single-item:hover::before {
    opacity: 0.6;
  }
  
  .vr5-footer-gallery .single-item:hover .popup-btn {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
  }
  
  .vr-product-card .feature-thumb {
    background-color: #F8F8F8;
    text-align: center;
    padding: 24px;
    height: 448px;
    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;
  }
  
  .vr-product-card .feature-thumb .feature-thumbnail {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .vr-product-card .feature-thumb .feature-thumbnail.thumb-hover {
    position: absolute;
    opacity: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-product-card .feature-thumb.thumb-sm {
    height: 375px;
  }
  
  @media (max-width: 1399.98px) {
    .vr-product-card .feature-thumb.thumb-sm {
      height: 300px;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr-product-card .feature-thumb.thumb-sm {
      height: 375px;
    }
  }
  
  .vr-product-card .feature-thumb .circle-badge {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 1;
    border-radius: 50%;
  }
  
  .vr-product-card .feature-thumb .circle-badge.primary {
    background-color: var(--primary-color);
  }
  
  .vr-product-card .feature-thumb .circle-badge.danger {
    background-color: var(--danger-color);
  }
  
  .vr-product-card .feature-thumb .circle-badge.sale {
    background-color: var(--text-color);
    color: var(--white-color);
  }
  
  .vr-product-card .feature-thumb .rectangle-badge {
    width: 60px;
    height: 25px;
    padding: 0 2px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    position: absolute;
    top: 30px;
    left: 30px;
  }
  
  .vr-product-card .feature-thumb .rectangle-badge.danger {
    background-color: #C92222;
  }
  
  .vr-product-card .feature-thumb .rectangle-badge.primary {
    background-color: var(--primary-color);
  }
  
  .vr-product-card .feature-thumb a {
    display: inline-block;
  }
  
  .vr-product-card .action-box {
    position: absolute;
    width: 200px;
    height: 50px;
    bottom: 50px;
    opacity: 0;
    visibility: hidden;
    left: 0;
    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: 35px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-product-card .action-box a {
    position: relative;
  }
  
  .vr-product-card .action-box a .tooltip-text {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    font-size: 12px;
    padding: 6px 16px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-product-card .action-box a .tooltip-text::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 6px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--primary-color);
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
  
  .vr-product-card .action-box a svg {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-product-card .action-box a svg:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .vr-product-card .action-box a:hover .tooltip-text {
    opacity: 1;
    top: -50px;
  }
  
  .vr-product-card .card-bottom h5 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-product-card .card-bottom h5:hover {
    color: var(--secondary-color);
  }
  
  .vr-product-card .rating-star {
    padding: 10px 18px;
    border-radius: 30px;
    background: -webkit-linear-gradient(319.92deg, #FFFFFF 0%, #F2F2F2 100%);
    background: -o-linear-gradient(319.92deg, #FFFFFF 0%, #F2F2F2 100%);
    background: linear-gradient(130.08deg, #FFFFFF 0%, #F2F2F2 100%);
    border: 1px solid var(--white-color);
    -webkit-box-shadow: 0px 4px 40px #E2E2E2;
    box-shadow: 0px 4px 40px #E2E2E2;
  }
  
  .vr-product-card .rating-star li {
    color: var(--primary-color);
  }
  
  .vr-product-card .thumbnail-slider-wrapper {
    max-width: 100%;
    padding-left: 50px;
  }
  
  .vr-product-card .vr-thumbnail-slider .slick-slide {
    text-align: center;
    padding: 24px 0;
  }
  
  .vr-product-card .vr-thumbnail-slider .slick-slide div {
    display: inline-block;
  }
  
  .vr-product-card .vr-thumbnail-control-slider {
    position: absolute;
    width: 80px;
    height: 280px;
    top: 32px;
    left: 32px;
    z-index: 10;
  }
  
  .vr-product-card .vr-thumbnail-control-slider .slick-list {
    height: 100% !important;
  }
  
  .vr-product-card .vr-thumbnail-control-slider .single-item {
    background-color: var(--white-color);
    padding: 10px;
  }
  
  .vr-product-card .vr-thumbnail-control-slider .single-item+.single-item {
    margin-top: 20px;
  }
  
  .vr-product-card .vr-thumbnail-control-slider .slick-slide {
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  
  .vr-product-card .vr-thumbnail-control-slider .slick-slide.slick-active {
    opacity: 1;
  }
  
  .vr-product-card:hover .feature-thumb .thumb {
    opacity: 0;
  }
  
  .vr-product-card:hover .feature-thumb .thumb-hover {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .vr-product-card:hover .action-box {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 1199.98px) {
    .vr-product-card .vr-thumbnail-control-slider {
      top: 12px;
      left: 12px;
    }
  }
  
  .hm2-ft-product-card {
    height: 600px;
    background-color: #F6F6F6;
    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;
  }
  
  .hm2-ft-product-card .products-info-box {
    position: absolute;
    top: 26%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .hm2-ft-product-card .products-info-box.dote-bottom {
    bottom: 25%;
    top: auto;
  }
  
  .hm2-ft-product-card .products-info-box.dote-bottom .info-box {
    bottom: 40px;
    top: auto;
  }
  
  @media (max-width: 575.98px) {
    .hm2-ft-product-card {
      height: 500px;
    }
  }
  
  .hm3-product-card .feature-thumb {
    overflow: hidden;
  }
  
  .hm3-product-card .feature-thumb img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
  }
  
  .hm3-product-card .feature-thumb img:hover {
    margin-left: -15px;
  }
  
  .hm3-product-card h3 {
    font-size: 36px;
    line-height: 1.2em;
    font-family: var(--hm2-font-family);
    font-weight: 400;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-product-card h3:hover {
    color: var(--secondary-color);
  }
  
  .hm3-product-card .explore-btn {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
  }
  
  .hm3-product-card .explore-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-product-card .explore-btn:hover {
    color: var(--secondary-color);
  }
  
  .hm3-product-card .explore-btn:hover::before {
    width: 0;
  }
  
  .hm3-product-card.pr-110 {
    padding-right: 100px;
  }
  
  .hm3-product-card.mt-100 {
    margin-top: 100px;
  }
  
  .hm3-product-card.mt--100 {
    margin-top: -100px;
  }
  
  @media (max-width: 1199.98px) {
    .hm3-product-card.pr-110 {
      padding-right: 0;
    }
  
    .hm3-product-card.mt-100 {
      margin-top: 0;
    }
  
    .hm3-product-card.mt--100 {
      margin-top: 0;
    }
  }
  
  .vr5-product-card {
    border: 1px solid #E7E7E7;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .feature-image {
    height: 375px;
    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;
    padding: 15px;
    border-bottom: 1px solid #E7E7E7;
    background-color: #F8F8F8;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .feature-image.h-300 {
    height: 300px;
  }
  
  .vr5-product-card .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .feature-image .circle-badge {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    border-radius: 50%;
  }
  
  .vr5-product-card .feature-image .circle-badge.primary {
    background-color: var(--primary-color);
  }
  
  .vr5-product-card .feature-image .circle-badge.sale {
    background-color: var(--text-color);
    color: var(--white-color);
  }
  
  .vr5-product-card .action-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .cart-btn {
    width: 150px;
    height: 45px;
    background-color: var(--primary-color);
    display: inline-block;
    line-height: 45px;
    text-align: center;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  
  .vr5-product-card .cart-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .cart-btn:hover::before {
    height: 100%;
  }
  
  .vr5-product-card .action-btns {
    margin-top: 8px;
  }
  
  .vr5-product-card .action-btns a {
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
  }
  
  .vr5-product-card .action-btns a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .action-btns a:hover {
    border-color: var(--secondary-color);
  }
  
  .vr5-product-card .action-btns a:hover svg path {
    fill: var(--white-color);
  }
  
  .vr5-product-card .action-btns a:hover::before {
    height: 100%;
  }
  
  .vr5-product-card .product-content {
    padding: 30px;
  }
  
  .vr5-product-card .product-content h6 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-card .product-content h6:hover {
    color: var(--secondary-color);
  }
  
  .vr5-product-card:hover {
    border-color: var(--primary-color);
  }
  
  .vr5-product-card:hover .feature-image {
    background-color: var(--white-color);
    border-color: var(--primary-color);
  }
  
  .vr5-product-card:hover .feature-image img {
    opacity: 0.4;
  }
  
  .vr5-product-card:hover .action-box {
    opacity: 1;
    visibility: visible;
  }
  
  .vr5-product-card:hover .action-box .cart-btn {
    -webkit-animation: 0.5s theme_fadeInUp;
    animation: 0.5s theme_fadeInUp;
  }
  
  .vr5-product-card:hover .action-box .action-btns a:nth-child(1) {
    -webkit-animation: 0.6s theme_fadeInUp;
    animation: 0.6s theme_fadeInUp;
  }
  
  .vr5-product-card:hover .action-box .action-btns a:nth-child(2) {
    -webkit-animation: 0.8s theme_fadeInUp;
    animation: 0.8s theme_fadeInUp;
  }
  
  .vr5-product-card:hover .action-box .action-btns a:nth-child(3) {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
  }
  
  .vr6-product-card {
    border: 1px solid #E7E7E7;
    padding: 10px;
  }
  
  .vr6-product-card .feature-image {
    background-color: #F8F8F8;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 355px;
    width: 100%;
  }
  
  .vr6-product-card .feature-image .feature-thumbnail {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .vr6-product-card .feature-image .feature-thumbnail.thumb-hover {
    position: absolute;
    opacity: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 80%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-product-card .feature-image .offer-badge {
    padding: 5px 10px;
    font-size: 10px;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--primary-color);
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .vr6-product-card .feature-image .product-action-btns {
    width: 40px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
  }
  
  .vr6-product-card .feature-image .product-action-btns a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    color: var(--primary-color);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }
  
  .vr6-product-card .feature-image .product-action-btns a svg path {
    fill: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-product-card .feature-image .product-action-btns a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-product-card .feature-image .product-action-btns a:hover svg path {
    fill: var(--white-color);
  }
  
  .vr6-product-card .feature-image .product-action-btns a:hover::before {
    height: 100%;
  }
  
  .vr6-product-card .vr6-product-card-content {
    padding: 30px 20px;
  }
  
  .vr6-product-card .vr6-product-card-content .pricing span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .vr6-product-card .vr6-product-card-content .pricing del {
    font-size: 14px;
  }
  
  .vr6-product-card .vr6-product-card-content .template-btn {
    padding: 12px 25px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
  }
  
  .vr6-product-card .vr6-product-card-content .template-btn::before {
    background-color: var(--primary-color);
  }
  
  .vr6-product-card:hover .feature-image .thumb {
    opacity: 0;
  }
  
  .vr6-product-card:hover .feature-image .thumb-hover {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .vr6-product-card:hover .feature-image .product-action-btns {
    opacity: 1;
    visibility: visible;
  }
  
  .vr6-product-card:hover .feature-image .product-action-btns a:nth-child(1) {
    -webkit-animation: 0.5s theme_fadeInUp;
    animation: 0.5s theme_fadeInUp;
  }
  
  .vr6-product-card:hover .feature-image .product-action-btns a:nth-child(2) {
    -webkit-animation: 0.7s theme_fadeInUp;
    animation: 0.7s theme_fadeInUp;
  }
  
  .vr6-product-card:hover .feature-image .product-action-btns a:nth-child(3) {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
  }
  
  .vr-horizontal-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
  }
  
  .vr-horizontal-product .feature-image {
    width: 300px;
    height: 250px;
    background-color: #F6F6F6;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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-negative: 0;
    flex-shrink: 0;
    position: relative;
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a {
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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 rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    position: relative;
    z-index: 1;
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--white-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: -1;
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a svg path {
    fill: var(--white-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a:hover {
    color: var(--primary-color);
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a:hover svg path {
    fill: var(--primary-color);
  }
  
  .vr-horizontal-product .feature-image .vr-product-overlay a:hover::before {
    height: 100%;
  }
  
  .vr-horizontal-product .vrh-card-content .outline-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    width: auto;
    padding: 0 15px;
  }
  
  .vr-horizontal-product .vrh-card-content .outline-btn span i {
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: transparent;
  }
  
  .vr-horizontal-product:hover .feature-image .vr-product-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 767.98px) {
    .vr-horizontal-product {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .vr-horizontal-product .feature-image {
      width: 100%;
    }
  }
  
  .breadcrumb-section {
    background-color: #F6F6F6;
  }
  
  .breadcrumb-text a {
    margin-right: 4px;
    color: var(--text-color);
    display: inline-block;
  }
  
  .breadcrumb-text a:hover {
    color: var(--secondary-color);
  }
  
  .breadcrumb-text span {
    margin-left: 4px;
  }
  
  .sidebar-widget .widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
  }
  
  .sidebar-widget .search-widget input {
    background-color: var(--light-bg-2);
  }
  
  .sidebar-widget .sidebar-check-fields li {
    display: block;
  }
  
  .sidebar-widget .sidebar-check-fields li label {
    position: relative;
    display: block;
  }
  
  .sidebar-widget .sidebar-check-fields li label>span {
    padding-left: 32px;
    display: block;
    position: relative;
    font-weight: 300;
  }
  
  .sidebar-widget .sidebar-check-fields li label>span::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 12px;
    text-align: center;
    line-height: 17px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    color: transparent;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .sidebar-widget .sidebar-check-fields li label>span span {
    float: right;
  }
  
  .sidebar-widget .sidebar-check-fields li label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  
  .sidebar-widget .sidebar-check-fields li label input:checked~span::before {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
  }
  
  .sidebar-widget .sidebar-check-fields li+li {
    margin-top: 18px;
  }
  
  .sidebar-widget .color-select li label {
    position: relative;
    display: block;
  }
  
  .sidebar-widget .color-select li label>span {
    padding-left: 32px;
    display: block;
    font-weight: 300;
    position: relative;
  }
  
  .sidebar-widget .color-select li label>span::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: transparent;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  
  .sidebar-widget .color-select li label>span span {
    float: right;
  }
  
  .sidebar-widget .color-select li label>span.bg-soft-gold::before {
    background-color: #EB9A3C;
  }
  
  .sidebar-widget .color-select li label>span.bg-light-pink::before {
    background-color: #FAA9D9;
  }
  
  .sidebar-widget .color-select li label>span.bg-green-touch::before {
    background-color: #99C88D;
  }
  
  .sidebar-widget .color-select li label>span.bg-navy-blue::before {
    background-color: #A9BFFA;
  }
  
  .sidebar-widget .color-select li label>span.bg-gray-white::before {
    background-color: #EEEACA;
  }
  
  .sidebar-widget .color-select li label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  
  .sidebar-widget .color-select li label input:checked~span::before {
    color: var(--white-color);
  }
  
  .sidebar-widget .color-select li+li {
    margin-top: 18px;
  }
  
  .products-widget .sidebar-products li .thumbnail {
    max-width: 90px;
  }
  
  .products-widget .sidebar-products li+li {
    margin-top: 24px;
  }
  
  .filter-widget .ur-pricing-range {
    border: 0;
    background-color: var(--border-color);
    height: 5px;
  }
  
  .filter-widget .ur-pricing-range .ui-slider-range {
    background-color: var(--primary-color);
  }
  
  .filter-widget .ur-pricing-range .ui-slider-handle {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    background-color: var(--white-color);
    padding: 0;
    outline: 0;
  }
  
  .filter-widget .ur-pricing-range .ui-slider-handle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
  }
  
  .filter-widget p {
    font-weight: 300;
  }
  
  .filter-widget input {
    border: 0;
    font-weight: 300;
  }
  
  .filter-widget .submit-btn {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .filter-widget .submit-btn:hover {
    color: var(--secondary-color);
  }
  
  .latest-post-widget .latest-posts li+li {
    margin-top: 25px;
  }
  
  .latest-post-widget .latest-posts .feature-image {
    width: 90px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  .latest-post-widget .latest-posts .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .latest-post-widget .latest-posts .feature-image img:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .latest-post-widget .latest-posts h6 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .latest-post-widget .latest-posts h6:hover {
    color: var(--secondary-color);
  }
  
  .tags-widget .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .tags-widget .tags a {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-color);
  }
  
  .tags-widget .tags a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
  }
  
  .instagram-widget .insta-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .instagram-widget .insta-posts li {
    width: calc(33% - 10px);
    overflow: hidden;
  }
  
  .instagram-widget .insta-posts li img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .instagram-widget .insta-posts li img:hover {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
  }
  
  /****************************** page styles ******************************/
  /************************* hero section **********************/
  .hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .hero-section .hero-images .box-shape {
    width: 151px;
    height: 330px;
    background-color: #E7E4E4;
    bottom: -60px;
    left: 50%;
    z-index: 1;
  }
  
  .hero-section .hero-images img {
    z-index: 2;
    display: inline-block;
  }
  
  @media (max-width: 1560px) {
    .hero-section .hero-content-wrapper {
      padding-left: 60px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .hero-section .hero-content-wrapper {
      padding-left: 0;
    }
  }
  
  .hero-vertical-slider {
    width: 80px;
    height: 175px;
    position: absolute;
    left: -160px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .hero-vertical-slider .single-item {
    margin-top: 6px;
  }
  
  .hero-vertical-slider .single-item img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  @media (max-width: 1660px) {
    .hero-vertical-slider {
      left: -100px;
    }
  }
  
  @media (max-width: 1560px) {
    .hero-vertical-slider {
      left: -40px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .hero-vertical-slider {
      left: -50px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .hero-vertical-slider {
      left: auto;
      right: 0;
    }
  }
  
  @media (max-width: 991.98px) {
    .hero-vertical-slider {
      display: none;
    }
  }
  
  .hero-subtitle {
    background-color: #761818;
    color: var(--white-color);
    padding: 7px 18px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .hero-main-slider .slick-list {
    overflow: visible;
  }
  
  .hero-main-slider .slick-active .hero-subtitle {
    -webkit-animation: 0.5s theme_fadeInUp;
    animation: 0.5s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active .hero-title {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active .rf-text {
    -webkit-animation: 1.2s theme_fadeInUp;
    animation: 1.2s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active p {
    -webkit-animation: 1.4s theme_fadeInUp;
    animation: 1.4s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active .template-btn {
    -webkit-animation: 1.5s theme_fadeInUp;
    animation: 1.5s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active .image-1 {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
  }
  
  .hero-main-slider .slick-active .image-2 {
    -webkit-animation: 1.2s fadeInLeft;
    animation: 1.2s fadeInLeft;
  }
  
  .hero-main-slider .slick-active .box-shape {
    -webkit-animation: 1.5s flipInX;
    animation: 1.5s flipInX;
  }
  
  /************************* banner section  *************************/
  .banner-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  @media (max-width: 991.98px) {
    .banner-section {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  }
  
  .banner-1 {
    width: 39%;
    height: 549px;
    padding: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-size: 101% 110%;
    background-repeat: no-repeat;
    background-position: 0 -15px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .banner-1 .banner-content {
    max-width: 410px;
  }
  
  .banner-1 .explore-btn {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
  }
  
  .banner-1 .explore-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .banner-1 .explore-btn:hover::after {
    width: 100%;
  }
  
  .banner-1:hover {
    background-position: 0 0;
  }
  
  @media (max-width: 1600px) {
    .banner-1 {
      padding: 120px 120px 120px 40px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .banner-1 .banner-img {
      width: 250px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .banner-1 {
      padding: 70px 24px 200px;
      height: auto;
      background-size: cover;
      background-position: left bottom;
    }
  
    .banner-1 .banner-content {
      max-width: 100%;
    }
  }
  
  @media (max-width: 991.98px) {
    .banner-1 {
      width: 100%;
    }
  }
  
  .banner-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 77px 120px 55px 158px;
    height: 549px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    width: 61%;
    background-size: 110% 110%;
    background-position: 0 -15px;
    background-repeat: no-repeat;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .banner-2 .banner-content {
    max-width: 400px;
  }
  
  .banner-2 .explore-btn {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
  }
  
  .banner-2 .explore-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .banner-2 .explore-btn:hover::after {
    width: 100%;
  }
  
  .banner-2:hover {
    background-position: 0 0;
  }
  
  @media (max-width: 1600px) {
    .banner-2 {
      padding: 77px 40px 55px 24px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .banner-2 {
      background-size: 120% 120%;
    }
  
    .banner-2 h2 br {
      display: none;
    }
  }
  
  @media (max-width: 1199.98px) {
    .banner-2 {
      height: 552px;
      background-size: cover;
      background-position: right center;
    }
  
    .banner-2:hover {
      background-position: right center;
    }
  }
  
  @media (max-width: 991.98px) {
    .banner-2 {
      width: 100%;
    }
  }
  
  .banner-section-2 {
    background-color: #FBF6F2;
    padding: 140px 0;
  }
  
  .banner-section-2 .bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 90px 45px;
    background-size: 47%;
  }
  
  .banner-section-2 .rectangle-shape {
    left: 10%;
    top: -30px;
  }
  
  @media (max-width: 1399.98px) {
    .banner-section-2 {
      padding: 100px 0;
    }
  
    .banner-section-2 .bg-overlay {
      background-position: 0 45px;
      background-size: 50%;
    }
  }
  
  @media (max-width: 1199.98px) {
    .banner-section-2 .bg-overlay {
      display: none;
    }
  }
  
  @media (max-width: 767.98px) {
    .banner-section-2 {
      padding: 80px 0;
    }
  }
  
  .furniture-banner h2 {
    font-size: 60px;
    line-height: 1.0em;
  }
  
  .furniture-banner p {
    max-width: 490px;
    display: inline-block;
  }
  
  @media (max-width: 991.98px) {
    .furniture-banner h2 {
      font-size: 50px;
    }
  }
  
  @media (max-width: 575.98px) {
    .furniture-banner h2 {
      font-size: 42px;
    }
  }
  
  /***************** collection section start *****************/
  .vr-filter-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid #EDEDED;
    gap: 45px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .vr-filter-btns button {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: capitalize;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-filter-btns button:hover {
    color: var(--secondary-color);
  }
  
  .vr-filter-btns button.active {
    color: var(--secondary-color);
  }
  
  @media (max-width: 575.98px) {
    .vr-filter-btns {
      gap: 15px;
    }
  }
  
  /******************* arrival section start ******************/
  .arrival-slider .prev-arrow,
  .arrival-slider .next-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .arrival-slider .prev-arrow:hover,
  .arrival-slider .next-arrow:hover {
    color: var(--secondary-color);
  }
  
  .arrival-slider .prev-arrow {
    left: -120px;
  }
  
  .arrival-slider .prev-arrow i {
    margin-right: 15px;
  }
  
  .arrival-slider .next-arrow {
    right: -120px;
  }
  
  .arrival-slider .next-arrow i {
    margin-left: 15px;
  }
  
  @media (max-width: 1600px) {
    .arrival-slider .prev-arrow {
      left: -75px;
    }
  
    .arrival-slider .prev-arrow i {
      margin-right: 4px;
    }
  
    .arrival-slider .next-arrow {
      right: -75px;
    }
  
    .arrival-slider .next-arrow i {
      margin-left: 4px;
    }
  }
  
  /********************* ticker section start *******************/
  .ticker-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    padding-left: 100%;
    background-color: var(--primary-color);
  }
  
  .ticker-wrapper .ticker {
    display: inline-block;
    white-space: nowrap;
    padding: 26px 0;
    -webkit-animation: 30s ticker linear infinite;
    animation: 30s ticker linear infinite;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding-right: 100%;
  }
  
  .ticker-wrapper .ticker span {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .ticker-wrapper .ticker span+span {
    margin-left: 120px;
  }
  
  .ticker-wrapper .ticker span+span::before {
    content: '';
    position: absolute;
    left: -80px;
    width: 40px;
    height: 1px;
    background-color: var(--white-color);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .ticker-wrapper .ticker span:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  
  .ticker-wrapper .ticker span:hover::before {
    top: calc(50% + 6px);
  }
  
  .ticker-wrapper .ticker:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  
  /****************** featured products start ************/
  .featured-products-section {
    background-color: #EFEDED;
  }
  
  .featured-products-section .bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% + 15px);
    height: 100%;
    background-repeat: no-repeat;
    background-size: calc(100% + 20px) calc(100% + 20px);
    background-position: 0 -20px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .featured-products-section .bg-overlay:hover {
    background-position: 0 0;
  }
  
  .featured-products-section .svg-shape {
    left: -333px;
    bottom: -245px;
  }
  
  @media (max-width: 1199.98px) {
    .featured-products-section .bg-overlay {
      display: none;
    }
  }
  
  .ft-product-card {
    padding: 125px 160px;
  }
  
  .ft-product-card .products-info-box {
    position: absolute;
    right: 38%;
    top: 34%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  @media (max-width: 1600px) {
    .ft-product-card {
      padding: 90px 100px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .ft-product-card {
      padding: 60px 30px;
    }
  }
  
  .products-info-box {
    padding-top: 30px;
  }
  
  .products-info-box .dot {
    width: 16px;
    height: 16px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: 1.5s ripple-white linear infinite;
    animation: 1.5s ripple-white linear infinite;
    cursor: pointer;
  }
  
  .products-info-box .dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
  }
  
  .products-info-box .info-box {
    padding: 30px;
    border: 1px solid var(--primary-color);
    max-width: 215px;
    background-color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 30px;
    width: 220px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  
  .products-info-box h5 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .products-info-box h5:hover {
    color: var(--secondary-color);
  }
  
  .products-info-box:hover .info-box {
    opacity: 1;
    visibility: visible;
  }
  
  /******************* blog section start ****************/
  .blog-card .feature-image {
    max-height: 264px;
  }
  
  .blog-card .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    margin-top: -10px;
  }
  
  .blog-card .blog-meta {
    gap: 30px;
  }
  
  .blog-card h5 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .blog-card h5:hover {
    color: var(--secondary-color);
  }
  
  .blog-card .explore-btn {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  
  .blog-card .explore-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .blog-card .explore-btn:hover {
    color: var(--secondary-color);
  }
  
  .blog-card .explore-btn:hover::before {
    width: 0;
  }
  
  .blog-card:hover .feature-image img {
    margin-top: 0;
  }
  
  @media (max-width: 1399.98px) {
    .blog-card .feature-image {
      max-height: 224px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .blog-card .feature-image {
      max-height: 264px;
    }
  }
  
  /**************** feature section *****************/
  .feature-section {
    padding: 56px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  
  .icon-box {
    gap: 20px;
  }
  
  .icon-box .icon-wrapper img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .icon-box.border-right {
    position: relative;
  }
  
  .icon-box.border-right::after {
    content: '';
    position: absolute;
    right: 45px;
    top: -60px;
    width: 1px;
    height: calc(100% + 120px);
    background-color: var(--border-color);
  }
  
  .icon-box:hover .icon-wrapper img {
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  
  @media (max-width: 1560px) {
    .icon-box.border-right::after {
      display: none;
    }
  }
  
  .hm2-hero-section {
    padding: 200px 0 140px;
    background-color: #e31013;
    margin-top: -160px;
  }
  
  .hm2-hero-section .vintage {
    font-size: 200px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 35%;
    bottom: -120px;
  }
  
  .hm2-hero-section .spring-text {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    padding-left: 70px;
    left: -240px;
    top: 50%;
    -webkit-transform: rotate(-90deg) translateY(-50%);
    -ms-transform: rotate(-90deg) translateY(-50%);
    transform: rotate(-90deg) translateY(-50%);
  }
  
  .hm2-hero-section .spring-text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--white-color);
    left: 0;
    bottom: 8px;
  }
  
  @media (max-width: 1660px) {
    .hm2-hero-section .spring-text {
      left: -200px;
    }
  }
  
  @media (max-width: 1600px) {
    .hm2-hero-section .spring-text {
      left: -150px;
    }
  }
  
  @media (max-width: 767.98px) {
    .hm2-hero-section .vintage {
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
    }
  }
  
  .hm2-hero-slider .slick-active .hm2-hero-subtitle {
    -webkit-animation: 1.2s theme_fadeInUp;
    animation: 1.2s theme_fadeInUp;
  }
  
  .hm2-hero-slider .slick-active .hm2-font-family {
    -webkit-animation: 1.4s theme_fadeInUp;
    animation: 1.4s theme_fadeInUp;
  }
  
  .hm2-hero-slider .slick-active p {
    -webkit-animation: 1.6s theme_fadeInUp;
    animation: 1.6s theme_fadeInUp;
  }
  
  .hm2-hero-slider .slick-active a {
    -webkit-animation: 1.8s theme_fadeInUp;
    animation: 1.8s theme_fadeInUp;
  }
  
  .hm2-hero-slider .slick-active img {
    -webkit-animation: 1.6s theme_fadeInUp;
    animation: 1.6s theme_fadeInUp;
  }
  
  .hm2-hero-slider .slick-active .products-info-box {
    -webkit-animation: 1.8s theme_fadeInUp;
    animation: 1.8s theme_fadeInUp;
  }
  
  .hm2-hero-left .hm2-hero-subtitle {
    font-size: 50px;
    display: inline-block;
  
  }
  
  .hm2-hero-left h1 {
    font-size: 120px;
  }
  
  .hm2-hero-left p {
    color: #FDB0B0;
  }
  
  .hm2-hero-left .white-btn::before {
    background-color: var(--primary-color);
  }
  
  @media (max-width: 575.98px) {
    .hm2-hero-left h1 {
      font-size: 60px;
    }
  }
  
  .hm2-hero-right .subtitle {
    position: absolute;
    top: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 60px;
    white-space: nowrap;
    font-family: var(--subtitle-font);
    z-index: 2;
  }
  
  .hm2-hero-right .products-info-box {
    left: 15%;
    top: 32%;
  }


  
  





  .hm2-hero-slider .slick-dots {
    position: absolute;
    top: 100%;
    right: 20px; /* Adjust this based on your design */
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px; /* Adjust spacing between dots */
}

.hm2-hero-slider .slick-dots li {
    display: block;
    margin-bottom: 10px; /* Adjust spacing between dots */
}

.hm2-hero-slider .slick-dots li button {
    font-size: 0;
    width: 6px; /* Adjust dot size */
    height: 6px;
    background-color: var(--white-color);
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hm2-hero-slider .slick-dots li.slick-active button {
    background-color: var(--primary-color); /* Change color for active dot */
}











  
  /************************** featured products ***************/
  .hm2-filter-btn-group {
    gap: 45px;
  }
  
  .hm2-filter-btn-group button {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-filter-btn-group button:hover {
    color: var(--secondary-color);
  }
  
  .hm2-filter-btn-group button.active {
    color: var(--secondary-color);
  }
  
  @media (max-width: 767.98px) {
    .hm2-filter-btn-group {
      gap: 24px;
    }
  }
  
  /************************** brand section start **********************/
  .hm2-brand-section {
    background-color: var(--primary-color);
  }
  
  .hm2-brand-section .overlay-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .hm2-brand-box {
    background-color: var(--white-color);
  }
  
  .hm2-brand-slider {
    padding: 75px 0;
  }
  
  .hm2-brand-slider .single-item {
    text-align: center;
  }
  
  .hm2-brand-slider .single-item img {
    display: inline-block;
  }
  
  .hm2-brand-slider .single-item:hover img {
    -webkit-animation: 0.3s toTopFromBottom;
    animation: 0.3s toTopFromBottom;
  }
  
  /********************* gallery section start *********************/
  .hm2-gallery-section {
    background-color: #F5F4F2;
    padding: 140px 0 120px;
  }
  
  .hm2-gallery-section .circle-shape {
    width: 1100px;
    height: 1100px;
    background-color: #EAEAEA;
    top: 50px;
    left: -400px;
  }
  
  /************************ blog section start *********************/
  .hm2-article-box {
    background-color: #F6F6F6;
    padding: 80px;
  }
  
  .hm2-article-box .feature-image {
    overflow: hidden;
  }
  
  .hm2-article-box .feature-image img {
    width: calc(100% + 15px);
    max-width: calc(100% + 15px);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-article-box h5 {
    font-size: 36px;
    line-height: 46px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-article-box h5:hover {
    color: var(--secondary-color);
  }
  
  .hm2-article-box .explore-btn {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  
  .hm2-article-box .explore-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-article-box .explore-btn:hover {
    color: var(--secondary-color);
  }
  
  .hm2-article-box .explore-btn:hover::before {
    width: 0;
  }
  
  .hm2-article-box:hover .feature-image img {
    margin-left: -10px;
  }
  
  @media (max-width: 767.98px) {
    .hm2-article-box {
      padding: 32px;
    }
  }
  
  /******************* feature section start **********************/
  .hm2-feature-section {
    border-top: 1px solid rgba(18, 17, 17, 0.15);
    border-bottom: 1px solid rgba(18, 17, 17, 0.15);
    padding: 100px 0;
  }
  
  .hm2-feature-box {
    padding: 0 24px;
  }
  
  .hm2-feature-box .icon-wrapper {
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-feature-box .icon-wrapper img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm2-feature-box:hover .icon-wrapper img {
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  
  .hm2-scrolltop {
    position: absolute;
    right: 50px;
    bottom: 90px;
    z-index: 5;
    color: var(--text-color);
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  
  @media (max-width: 1560px) {
    .hm2-scrolltop {
      right: -30px;
    }
  }
  
  @media (max-width: 1399.98px) {
    .hm2-scrolltop {
      bottom: 150px;
    }
  }
  
  /********************************* hero section start *****************************/
  .hm3-hero-section {
    padding: 220px 0 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -230px;
  }
  
  @media (max-width: 1199.98px) {
    .hm3-hero-section {
      padding: 235px 0 120px 0;
    }
  }
  
  .hm3-hero-slider .slick-list {
    margin: 0 -30px;
  }
  
  .hm3-hero-slider .slick-list .slick-slide {
    margin: 0 30px;
  }
  
  .hm3-hero-slider .slick-dots {
    margin-top: 60px;
  }
  
  .hm3-hero-slider .slick-dots li {
    display: inline-block;
    position: relative;
  }
  
  .hm3-hero-slider .slick-dots li::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    width: 55px;
    height: 55px;
    opacity: 0;
    visibility: hidden;
  }
  
  .hm3-hero-slider .slick-dots li button {
    font-size: 14px;
    font-family: var(--hm2-font-family);
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-hero-slider .slick-dots li button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    top: 50%;
    left: 40px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-hero-slider .slick-dots li.slick-active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .hm3-hero-slider .slick-dots li.slick-active button {
    margin-right: 60px;
    margin-left: 20px;
  }
  
  .hm3-hero-slider .slick-dots li.slick-active button::after {
    width: 50px;
  }
  
  @media (max-width: 1399.98px) {
    .hm3-hero-slider .slick-list {
      margin: 0 -12px;
    }
  
    .hm3-hero-slider .slick-list .slick-slide {
      margin: 0 12px;
    }
  }
  
  /*********************** search location ***********************/
  .store-search-box {
    border: 1px solid var(--primary-color);
    padding: 42px 60px;
  }
  
  .store-search-box input[type='text'] {
    border: 0;
    font-weight: 300;
  }
  
  .store-search-box button {
    padding: 0;
    width: 45px;
    height: 45px;
  }
  
  .store-search-box button svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .store-search-box button:hover svg path {
    fill: var(--white-color);
  }
  
  /*********************** brand section start ***********************/
  .hm3-brand-section {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 60px 0;
  }
  
  .hm3-brand-slider .single-item:hover img {
    -webkit-animation: 0.3s toTopFromBottom;
    animation: 0.3s toTopFromBottom;
  }
  
  /*********************** filter section start **********************/
  .hm3-filter-nav {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .hm3-filter-nav li a {
    font-size: 30px;
    color: var(--text-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    position: relative;
  }
  
  .hm3-filter-nav li a::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-filter-nav li a.active {
    color: var(--primary-color);
  }
  
  .hm3-filter-nav li a.active::before {
    width: 100%;
    right: auto;
    left: 0;
  }
  
  @media (max-width: 575.98px) {
    .hm3-filter-nav {
      gap: 24px;
    }
  }
  
  /*********************** blog section start ***********************/
  .hm3-blog-slider .prev-arrow,
  .hm3-blog-slider .next-arrow {
    position: absolute;
    top: -112px;
    right: 0;
    color: var(--primary-color);
    font-size: 18px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .hm3-blog-slider .prev-arrow:hover,
  .hm3-blog-slider .next-arrow:hover {
    color: var(--secondary-color);
  }
  
  .hm3-blog-slider .prev-arrow {
    right: 100px;
  }
  
  @media (max-width: 767.98px) {
  
    .hm3-blog-slider .prev-arrow,
    .hm3-blog-slider .next-arrow {
      display: none !important;
    }
  }
  
  /***************** subscribe area start *******************/
  .hm3-subscribe-box {
    padding: 100px;
    border: 10px solid var(--primary-color);
  }
  
  .hm3-subscribe-box h3 {
    font-size: 40px;
    line-height: 50px;
  }
  
  @media (max-width: 575.98px) {
    .hm3-subscribe-box {
      padding: 70px 40px;
    }
  }
  
  .hm3-sb-form {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    border: 1px solid #E4E4E4;
    padding: 20px 30px;
  }
  
  .hm3-sb-form label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  
  .hm3-sb-form label input {
    width: 100%;
    border: 0;
  }
  
  .hm3-sb-form button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    background-color: var(--white-color);
    padding-left: 10px;
  }
  
  .hm3-sb-form button:hover {
    color: var(--text-color);
  }
  
  /************* cart table *************/
  .cart-table {
    width: 100%;
    border: 1px solid var(--border-color);
  }
  
  .cart-table tr {
    border-top: 1px solid var(--border-color);
  }
  
  .cart-table th {
    font-weight: 400;
    text-transform: uppercase;
    padding: 24px 40px;
  }
  
  .cart-table .remove_product {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cart-table .remove_product:hover {
    color: var(--secondary-color);
  }
  
  .cart-table td {
    padding: 30px 40px;
    vertical-align: middle;
  }
  
  .cart-table td .product-box {
    min-width: 350px;
  }
  
  .cart-table td .feature-image {
    width: 80px;
    padding: 15px;
  }
  
  .cart-table td .quantity input {
    max-width: 50px;
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
  }
  
  .cart-table td .quantity .step-btns {
    width: 30px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  
  .cart-table td .quantity .step-btns::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .cart-table td .quantity .step-btns button {
    font-size: 12px;
    padding: 0;
    display: block;
  }
  
  .cart-coupon-form {
    max-width: 475px;
    gap: 10px;
  }
  
  .cart-coupon-form input {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--border-color);
    font-weight: 300;
    font-size: 14px;
  }
  
  .cart-coupon-form .submit-btn {
    border: 1px solid var(--border-color);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 13px 30px;
  }
  
  .cart-calculator-form table {
    width: 100%;
    border: 1px solid var(--border-color);
  }
  
  .cart-calculator-form table tr {
    border-top: 1px solid var(--border-color);
  }
  
  .cart-calculator-form table td {
    font-size: 18px;
    vertical-align: top;
    width: 50%;
    padding: 24px 32px;
  }
  
  .cart-calculator-form table td .shipping-method {
    min-width: 250px;
  }
  
  .cart-calculator-form table td .shipping-method label {
    display: block;
  }
  
  .cart-calculator-form table td .shipping-method label span {
    position: relative;
    padding-left: 24px;
    margin-left: -20px;
  }
  
  .cart-calculator-form table td .shipping-method label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
  }
  
  .cart-calculator-form table td .shipping-method label span::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
  }
  
  .cart-calculator-form table td .shipping-method label input {
    opacity: 0;
  }
  
  .cart-calculator-form table td .shipping-method label input:checked~span::after {
    opacity: 1;
  }
  
  .cart-calculator-form table td .shipping-method label+label {
    margin-top: 12px;
  }
  
  .cart-calculator-form table td .shipping-method p {
    max-width: 270px;
  }
  
  /*************** checkout page ***************/
  .returning-box {
    padding: 18px 30px;
    position: relative;
  }
  
  .returning-box .checkout-login-form {
    background-color: var(--white-color);
    padding: 24px;
    margin-top: 24px;
    display: none;
  }
  
  .returning-box .checkout-login-form .theme-input {
    background-color: transparent;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
  }
  
  .checkout-coupon-box {
    padding: 18px 30px;
    border: 1px solid var(--border-color);
  }
  
  .checkout-coupon-box .checkout-coupon-form {
    margin-top: 24px;
    max-width: 400px;
    display: none;
  }
  
  .checkout-coupon-box .checkout-coupon-form input {
    margin-bottom: 20px;
  }
  
  .checkout-form .input-field label {
    margin-bottom: 10px;
  }
  
  .checkout-form .input-field .nice-select {
    height: 54px;
    line-height: 54px;
  }
  
  .checkout-form .input-field .nice-select.open .list {
    width: 100%;
  }
  
  .checkout-form .theme-input {
    border: 1px solid var(--border-color);
    font-weight: 300;
  }
  
  .order-table {
    width: 100%;
    padding: 40px;
    border: 1px solid var(--border-color);
  }
  
  .order-table table {
    width: 100%;
  }
  
  .order-table table tr {
    border-bottom: 1px solid var(--border-color);
  }
  
  .order-table table th {
    text-transform: uppercase;
    font-weight: 500;
    padding: 24px 0;
  }
  
  .order-table table td {
    padding: 24px 0;
    vertical-align: middle;
  }
  
  .order-table table td .product-box {
    min-width: 340px;
  }
  
  .order-table table td .pp-price {
    min-width: 100px;
  }
  
  .order-table table .feature-image {
    width: 80px;
    padding: 10px;
  }
  
  .checkout-payment-methods label {
    display: block;
    position: relative;
  }
  
  .checkout-payment-methods label input {
    opacity: 0;
  }
  
  .checkout-payment-methods label input:checked~span::after {
    opacity: 1;
  }
  
  .checkout-payment-methods label span.radio {
    position: relative;
    padding-left: 15px;
  }
  
  .checkout-payment-methods label span.radio::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    border-radius: 50%;
  }
  
  .checkout-payment-methods label span.radio::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
  }
  
  .checkout-payment-methods label p {
    margin-top: 4px;
  }
  
  .checkout-payment-methods label+label {
    margin-top: 12px;
  }
  
  .checkout-payment-methods label input:checked~.description {
    display: block;
  }
  
  .checkout-payment-methods label input:checked~span.checkbox::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .checkout-payment-methods label .description {
    display: none;
    margin-top: 10px;
  }
  
  .checkout-payment-methods label span.checkbox {
    position: relative;
    padding-left: 10px;
  }
  
  .checkout-payment-methods label span.checkbox::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 10px;
    text-align: center;
    line-height: 12px;
    position: absolute;
    left: -15px;
    top: 0px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--border-color);
    color: var(--white-color);
  }
  
  /**************** faq page ************/
  .faq-form {
    border: 1px solid var(--border-color);
    padding: 40px;
    background-color: var(--light-bg-2);
  }
  
  .faq-form input,
  .faq-form textarea {
    background-color: transparent;
    border: 1px solid #D4D4D4;
    margin-bottom: 20px;
  }
  
  .faq-form input:focus,
  .faq-form textarea:focus {
    border-color: var(--primary-color);
  }
  
  .faq-accordion .accordion-item {
    border: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
  }
  
  .faq-accordion .accordion-item+.accordion-item {
    border-top: 0;
  }
  
  .faq-accordion .accordion-item .accordion-header a {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
  }
  
  /*************** wishlist table *****************/
  .wishlist-table table {
    border: 1px solid var(--border-color);
    border-top: 0;
  }
  
  .wishlist-table tr {
    border-top: 1px solid var(--border-color);
  }
  
  .wishlist-table tr th {
    color: var(--primary-color);
    padding: 24px 32px;
    font-weight: 400;
  }
  
  .wishlist-table tr td {
    padding: 30px 40px;
    vertical-align: middle;
  }
  
  .wishlist-table tr td .product-box {
    min-width: 340px;
  }
  
  .wishlist-table tr td .stock-status {
    min-width: 290px;
    gap: 10px;
  }
  
  .wishlist-table tr td .remove_product {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .wishlist-table tr td .remove_product:hover {
    color: var(--secondary-color);
  }
  
  .wishlist-table tr td .feature-image {
    width: 80px;
    height: 80px;
    padding: 15px;
  }
  
  .address-single a {
    color: var(--text-color);
    display: inline-block;
  }
  
  .address-single a:hover {
    color: var(--primary-color);
  }
  
  .address-single a.mail {
    position: relative;
    margin-top: 8px;
  }
  
  .address-single a.mail::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    bottom: -4px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .address-single a.mail:hover::before {
    width: 0;
  }
  
  .ct-contact-form input,
  .ct-contact-form textarea {
    border: 1px solid var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .ct-contact-form input::-webkit-input-placeholder,
  .ct-contact-form textarea::-webkit-input-placeholder {
    color: var(--primary-color);
  }
  
  .ct-contact-form input:-ms-input-placeholder,
  .ct-contact-form textarea:-ms-input-placeholder {
    color: var(--primary-color);
  }
  
  .ct-contact-form input::-ms-input-placeholder,
  .ct-contact-form textarea::-ms-input-placeholder {
    color: var(--primary-color);
  }
  
  .ct-contact-form input::placeholder,
  .ct-contact-form textarea::placeholder {
    color: var(--primary-color);
  }
  
  /*********************** blog list ********************/
  .blog-list-single-item .feature-thumbnail img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .blog-list-single-item .blog-meta span {
    padding-left: 15px;
    position: relative;
    color: var(--primary-color);
  }
  
  .blog-list-single-item .blog-meta span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
  }
  
  .blog-list-single-item .explore-btn {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
  }
  
  .blog-list-single-item .explore-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .blog-list-single-item .explore-btn:hover::before {
    width: 100%;
  }
  
  .blog-list-single-item.blog-formate-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 60px;
    border: 1px solid var(--primary-color);
    gap: 40px;
  }
  
  .template-pagination li {
    display: inline-block;
    margin-right: 15px;
  }
  
  .template-pagination li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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 var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .template-pagination li a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
  }
  
  /*********************** blog single ******************/
  .tags-social span {
    color: var(--primary-color);
    text-transform: uppercase;
  }
  
  .tags-social .tags-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .tags-social .tags-list a {
    padding: 10px 20px;
    border: 1px solid var(--light-stroke);
    color: var(--primary-color);
    font-size: 15px;
  }
  
  .tags-social .tags-list a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
  }
  
  .tags-social .social-share a {
    display: inline-block;
    color: var(--primary-color);
    padding: 0 6px;
  }
  
  .tags-social .social-share a:hover {
    color: var(--secondary-color);
  }
  
  .blog-author-box .author-thumb {
    width: 210px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  
  .blog-author-box .author-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-stroke);
    color: var(--primary-color);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
  }
  
  .blog-author-box .author-socials a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .spacer {
    border-top: 1px solid var(--light-stroke);
  }
  
  .blog-comment-list li {
    padding: 30px 0;
  }
  
  .blog-comment-list li+li {
    border-top: 1px solid var(--light-stroke);
  }
  
  .blog-comment-list .client-thumb {
    width: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  
  .blog-comment-list .reply-btn {
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 0;
    text-transform: uppercase;
  }
  
  @media (max-width: 767.98px) {
    .blog-comment-list .reply-btn {
      position: initial;
      margin-top: 15px;
    }
  }
  
  .layout-grid {
    padding: 8px 12px;
    gap: 12px;
    border: 1px solid var(--light-stroke);
  }
  
  .layout-grid a {
    opacity: 0.4;
  }
  
  .layout-grid a.active {
    opacity: 1;
  }
  
  .coupon-banner {
    padding: 60px 0 60px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
  }
  
  .vrs-product-card .feature-thumb {
    height: 300px;
  }
  
  .vrs-product-card .feature-thumb .circle-badge {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .vrs-product-card .feature-thumb img {
    max-width: 70%;
  }
  
  .vrs-product-card h5 {
    font-size: 20px;
  }
  
  .sidebar-products li h6 {
    font-size: 18px;
  }
  
  .vr-about-banner {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .vr-ab-feature-box .icon-wrapper {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-ab-feature-box .icon-wrapper svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr-ab-feature-box:hover .icon-wrapper {
    background-color: var(--primary-color);
  }
  
  .vr-ab-feature-box:hover .icon-wrapper svg path {
    fill: var(--white-color);
  }
  
  /********************** team-section start ***********************/
  .vr-team-card .feature-image {
    position: relative;
  }
  
  .vr-team-card .feature-image .team-social {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 155px;
    height: 45px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
  }
  
  .vr-team-card .feature-image .team-social a {
    color: rgba(255, 255, 255, 0.3);
  }
  
  .vr-team-card .feature-image .team-social a:hover {
    color: var(--white-color);
  }
  
  .vr-team-card:hover .feature-image .team-social {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
  }
  
  .ab-quote-box {
    background-color: #ECECEC;
  }
  
  .ab-quote-box .quote-icon {
    width: 211px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 121px;
    border: 1px solid var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    transform: rotate(-13deg);
  }
  
  .ab-quote-box .quote-icon svg {
    -webkit-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    transform: rotate(13deg);
  }
  
  .ab-quote-box h4 {
    text-transform: uppercase;
  }
  
  /************************** blog section start ********************/
  .ab-article {
    position: relative;
  }
  
  .ab-article .ab-article-box {
    padding: 50px;
    background-color: #F8F8F8;
    border: 1px solid var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .ab-article .ab-article-box .blog-meta {
    padding-left: 10px;
    position: relative;
  }
  
  .ab-article .ab-article-box .blog-meta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
  }
  
  .ab-article .ab-article-box .explore-btn {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    position: absolute;
    bottom: 40px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .ab-article .ab-article-box .explore-btn:hover {
    color: var(--secondary-color);
  }
  
  .ab-article:hover .ab-article-box {
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 1399.98px) {
    .ab-article .ab-article-box {
      position: initial;
      opacity: 1;
      visibility: visible;
    }
  }
  
  @media (max-width: 991.98px) {
    .ab-article img {
      width: 100%;
    }
  }
  
  .vr-product-thumb, .vr-product-thumb2 {
    height: 600px;
    background-color: #fff;
    border: 2px solid #F6F6F6;
  }
  
  .vr-product-thumb .sale-badge,
  .vr-product-thumb2 .sale-badge {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
  }
  
  .vr-product-thumb .vr-poroduct-single-slider,
  .vr-product-thumb .vr-poroduct-single-slider2,
  .vr-product-thumb2 .vr-poroduct-single-slider,
  .vr-product-thumb2 .vr-poroduct-single-slider2 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 200px);
    height: calc(100% - 240px);
  }
  
  .vr-product-thumb .vr-poroduct-single-slider .prev-arrow,
  .vr-product-thumb .vr-poroduct-single-slider .next-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2 .prev-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2 .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2 .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2 .next-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    font-size: 24px;
  }
  
  .vr-product-thumb .vr-poroduct-single-slider .prev-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2 .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2 .prev-arrow {
    left: -60px;
  }
  
  .vr-product-thumb .vr-poroduct-single-slider .next-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2 .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2 .next-arrow {
    right: -60px;
  }
  
  .vr-product-thumb .vr-poroduct-single-slider:hover .prev-arrow,
  .vr-product-thumb .vr-poroduct-single-slider:hover .next-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2:hover .prev-arrow,
  .vr-product-thumb .vr-poroduct-single-slider2:hover .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider:hover .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider:hover .next-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2:hover .prev-arrow,
  .vr-product-thumb2 .vr-poroduct-single-slider2:hover .next-arrow {
    opacity: 1;
    visibility: visible;
  }
  
  .vr-product-thumb .zoom-on-hover:hover img:not(.zoomImg),
  .vr-product-thumb2 .zoom-on-hover:hover img:not(.zoomImg) {
    opacity: 0;
  }
  
  @media (max-width: 1399.98px) {
  
    .vr-product-thumb .vr-poroduct-single-slider,
    .vr-product-thumb .vr-poroduct-single-slider2,
    .vr-product-thumb2 .vr-poroduct-single-slider,
    .vr-product-thumb2 .vr-poroduct-single-slider2 {
      height: calc(100% - 350px);
    }
  }
  
  @media (max-width: 1199.98px) {
  
    .vr-product-thumb .vr-poroduct-single-slider,
    .vr-product-thumb .vr-poroduct-single-slider2,
    .vr-product-thumb2 .vr-poroduct-single-slider,
    .vr-product-thumb2 .vr-poroduct-single-slider2 {
      height: calc(100% - 225px);
    }
  }
  
  @media (max-width: 767.98px) {
  
    .vr-product-thumb,
    .vr-product-thumb2 {
      height: 480px;
    }
  }
  
  @media (max-width: 575.98px) {
  
    .vr-product-thumb,
    .vr-product-thumb2 {
      height: auto;
      padding: 32px;
    }
  
    .vr-product-thumb .vr-poroduct-single-slider,
    .vr-product-thumb .vr-poroduct-single-slider2,
    .vr-product-thumb2 .vr-poroduct-single-slider,
    .vr-product-thumb2 .vr-poroduct-single-slider2 {
      width: 100%;
      height: 100%;
      position: initial;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
    }
  }
  
  .vr-product-thumb-control .slick-list {
    margin: 0 -12px;
  }
  
  .vr-product-thumb-control .slick-list .slick-slide {
    margin: 0 12px;
  }
  
  .vr-product-thumb-control .single-item {
    height: 180px;
    background-color: var(--light-bg-2);
    padding: 24px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  @media (max-width: 1199.98px) {
  
    .vr-product-details,
    .pd-product-details {
      overflow: hidden;
    }
  }
  
  .vr-product-details-content {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  
  .vr-product-details-content .product-rating .rating-star li {
    font-size: 14px;
    color: #F8C57A;
  }
  
  .color-variant .color-list li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .color-variant .color-list li a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--primary-color);
    background-color: #DF3D3D;
  }
  
  .color-variant .color-list li.blue a {
    background-color: #8E3DDF;
  }
  
  .color-variant .color-list li.green a {
    background-color: #3DB8DF;
  }
  
  .option-variant button {
    width: 210px;
    height: 40px;
    border: 1px solid var(--primary-color);
    margin-top: 16px;
    color: var(--text-color);
  }
  
  .option-variant button:hover {
    border-color: var(--secondary);
    color: var(--secondary);
  }
  
  .quantity-box {
    border: 1px solid var(--primary-color);
    width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
  }
  
  .quantity-box input {
    width: 100%;
    height: 40px;
    text-align: center;
    border: 0;
  }
  
  .quantity-box button {
    font-size: 14px;
  }
  
  .h-40 {
    width: 140px;
    height: 42px;
    font-size: 14px;
    padding: 0;
    text-align: center;
    line-height: 40px;
  }
  
  .pd-wishlist-btn {
    font-size: 14px;
    color: var(--primary-color);
    display: inline-block;
    font-weight: 600;
  }
  
  .pd-wishlist-btn i {
    margin-right: 4px;
  }
  
  .pd-wishlist-btn:hover {
    color: var(--secondary-color);
  }
  
  .product-meta li+li {
    margin-top: 6px;
  }
  
  .single-product-tab .nav {
    gap: 20px;
    border-bottom: 1px solid var(--light-stroke);
  }
  
  .single-product-tab .nav li a {
    font-size: 20px;
    color: var(--text-color);
    display: inline-block;
    padding: 6px 0;
    font-weight: 500;
  }
  
  .single-product-tab .nav li a.active {
    color: var(--primary-color);
  }
  
  .single-product-tab .video-content {
    width: 42%;
  }
  
  .single-product-tab .video-content .video-popup-btn {
    width: 102px;
    height: 102px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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 var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 30px;
  }
  
  .single-product-tab .video-content .video-popup-btn:hover {
    -webkit-transform: translate(-50%, -55%);
    -ms-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
  }
  
  @media (max-width: 991.98px) {
    .single-product-tab .video-content {
      width: 100%;
    }
  }
  
  .prduct-reviews>li+li {
    margin-top: 30px;
  }
  
  .prduct-reviews>li>img {
    width: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  
  .single-product-features li {
    color: var(--primary-color);
  }
  
  .single-product-features li+li {
    margin-top: 16px;
  }
  
  .prduct-reviews li ul li {
    color: #F8C57A;
  }
  
  .left-slider .slick-track {
    margin-left: 0;
    margin-right: auto;
  }
  
  .pd-accordion .accordion-header a {
    display: block;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
  }
  
  .pd-accordion .accordion-header a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
  }
  
  .pd-accordion .accordion-header a.collapsed::after {
    content: '+';
  }
  
  .pd-accordion .accordion-body {
    padding-bottom: 60px;
  }
  
  .pda-features li+li {
    margin-top: 8px;
  }
  
  .social-share a {
    color: var(--primary-color);
    margin-right: 8px;
  }
  
  .pd-vertical-product-slider {
    height: 640px;
  }
  
  .pd-vertical-product-slider .single-item{
    border:3px solid #F6F6F6;
  }
  
  .pd-vertical-product-slider .single-item+.single-item {
    margin-top: 20px;
  }
  
  .pd-vertical-product-slider .slick-slide+.slick-slide {
    margin-top: 20px;
  }
  
  @media (max-width: 1199.98px) {
    .pd-vertical-product-slider {
      height: auto;
      max-width: 600px;
      margin-top: 24px;
      margin-bottom: 40px;
    }
  
    .pd-vertical-product-slider .slick-list {
      margin: 0 -8px;
    }
  
    .pd-vertical-product-slider .slick-list .slick-slide {
      margin: 0 8px;
    }
  }
  
  /*********************************** hero section start ******************************/
  .vr4-hero-single {
    padding: 330px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .vr4-hero-single .vr4-hero-content {
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
  }
  
  .vr4-hero-single .vr4-hero-content h1 {
    font-size: 72px;
    line-height: 70px;
  }
  
  .vr4-hero-single .vr4-hero-content .template-btn {
    width: 160px;
    height: 50px;
    padding: 0 15px;
    line-height: 50px;
  }
  
  @media (max-width: 991.98px) {
    .vr4-hero-single {
      padding: 220px 0 330px;
    }
  }
  
  @media (max-width: 767.98px) {
    .vr4-hero-single {
      padding: 120px 0 250px;
    }
  
    .vr4-hero-single .vr4-hero-content h1 {
      font-size: 55px;
      line-height: 1.2em;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr4-hero-single .vr4-hero-content h1 {
      font-size: 45px;
    }
  }
  
  .vr4-hero-slider .prev-btn,
  .vr4-hero-slider .next-btn {
    width: 70px;
    height: 70px;
    background-color: var(--white-color);
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-hero-slider .prev-btn:hover,
  .vr4-hero-slider .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .vr4-hero-slider .prev-btn {
    left: 120px;
  }
  
  .vr4-hero-slider .next-btn {
    right: 120px;
  }
  
  .vr4-hero-slider .slick-slide.slick-active .vr4-hero-single h1 {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
  }
  
  .vr4-hero-slider .slick-slide.slick-active .vr4-hero-single .primary-btn {
    -webkit-animation: 1.2s theme_fadeInUp;
    animation: 1.2s theme_fadeInUp;
  }
  
  .vr4-hero-slider .slick-slide.slick-active .vr4-hero-single .white-btn {
    -webkit-animation: 1.3s theme_fadeInUp;
    animation: 1.3s theme_fadeInUp;
  }
  
  @media (max-width: 1399.98px) {
    .vr4-hero-slider .prev-btn {
      left: 15px;
    }
  
    .vr4-hero-slider .next-btn {
      right: 15px;
    }
  }
  
  @media (max-width: 1199.98px) {
  
    .vr4-hero-slider .prev-btn,
    .vr4-hero-slider .next-btn {
      top: auto;
      bottom: 100px;
    }
  
    .vr4-hero-slider .prev-btn {
      left: calc(50% - 80px);
    }
  
    .vr4-hero-slider .next-btn {
      right: calc(50% - 80px);
    }
  }
  
  @media (max-width: 767.98px) {
  
    .vr4-hero-slider .prev-btn,
    .vr4-hero-slider .next-btn {
      bottom: 50px;
    }
  }
  
  /******************** vr4-filter section **********************/
  .vr4-filter-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 65px;
  }
  
  .vr4-filter-nav button {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-filter-nav button:hover {
    color: var(--primary-color);
  }
  
  .vr4-filter-nav button.active {
    color: var(--primary-color);
  }
  
  @media (max-width: 575.98px) {
    .vr4-filter-nav {
      gap: 16px;
    }
  }
  
  .vr4-filter-section .tab-content {
    position: relative;
  }
  
  .vr4-product-card {
    position: relative;
    text-align: center;
    overflow: hidden;
    border: 1px solid #ccc; /* Thin border around the image */
    transition: all 0.3s ease-in-out;
  }
  
  .vr4-product-card .feature-image .badge-white {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    
    
  }
  
  .vr4-product-card .feature-image .vr4-feature-image-slider {
    background-color: #FFFF;
  }
  
  .vr4-product-card .feature-image .vr4-feature-image-slider .single-item {
    position: relative;
  }
  
  .vr4-product-card .feature-image .vr4-feature-image-slider .single-item .feature-thumb {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .vr4-product-card .feature-image .vr4-feature-image-slider .single-item .thumb-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  
  .vr4-product-card .feature-image .cart-action-box {
    position: absolute;
    left: 8px;
    bottom: -15px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn {
    padding: 12px 30px;
    font-size: 14px;
    color: #F0F0F0;
    background-color: #890404;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .vr4-product-card .feature-image .cart-action-box a.btn-squre {
    width: 45px;
    height: 45px;
    background-color: #890404;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .vr4-product-card .feature-image .cart-action-box a.btn-squre svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre {
    position: relative;
    z-index: 1;
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn svg path,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn::before,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: -1;
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn:hover,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre:hover {
    color: var(--white-color);
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn:hover svg path,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre:hover svg path {
    fill: var(--white-color);
  }
  
  .vr4-product-card .feature-image .cart-action-box .cart-btn:hover::before,
  .vr4-product-card .feature-image .cart-action-box a.btn-squre:hover::before {
    height: 100%;
  }
  
  .vr4-product-card .feature-image:hover .vr4-feature-image-slider .single-item .feature-thumb {
    opacity: 0;
  }
  
  .vr4-product-card .feature-image:hover .vr4-feature-image-slider .single-item .thumb-hover {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box .cart-btn {
    -webkit-animation: 0.3s theme_fadeInUp;
    animation: 0.3s theme_fadeInUp;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box a.btn-squre:nth-child(1) {
    -webkit-animation: 0.3s theme_fadeInUp;
    animation: 0.3s theme_fadeInUp;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box a.btn-squre:nth-child(2) {
    -webkit-animation: 0.5s theme_fadeInUp;
    animation: 0.5s theme_fadeInUp;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box a.btn-squre:nth-child(3) {
    -webkit-animation: 0.7s theme_fadeInUp;
    animation: 0.7s theme_fadeInUp;
  }
  
  .vr4-product-card .feature-image:hover .cart-action-box a.btn-squre:nth-child(4) {
    -webkit-animation: 0.9s theme_fadeInUp;
    animation: 0.9s theme_fadeInUp;
  }
  
  .vr4-product-card h5 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    font-weight: 600;
    margin: 0;
    
  }
  
  .vr4-product-card h5:hover {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
  }
  
  .vr4-product-card .vr4-ft-control-slider .slick-track {
    margin-left: 0;
  }
  
  .vr4-product-card .vr4-ft-control-slider .slick-list {
    margin: 0 -4px;
  }
  
  .vr4-product-card .vr4-ft-control-slider .slick-list .slick-slide {
    margin: 0 4px;
  }
  
  @media (max-width: 1460px) {
    .vr4-product-card .feature-image .cart-action-box .cart-btn {
      padding: 12px 15px;
    }
  }
  
  @media (max-width: 767.98px) {
    .vr4-product-card .vr4-feature-image-slider .single-item img {
      width: 100%;
    }
  }
  
  .vr4-filter-slider .prev-btn,
  .vr4-filter-slider .next-btn {
    width: 55px;
    height: 55px;
    border: 1px solid #DEE2E5;
    border-radius: 50%;
    color: #DEE2E5;
    z-index: 1;
    position: absolute;
    top: 30%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-filter-slider .prev-btn:hover,
  .vr4-filter-slider .next-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }
  
  .vr4-filter-slider .prev-btn {
    left: -77px;
  }
  
  .vr4-filter-slider .next-btn {
    right: -77px;
  }
  
  /******************** video section start ********************/
  @media (max-width: 1199.98px) {
    .vr4-video-section .vr4-section-title .fs-40 {
      font-size: 30px;
    }
  }
  
  @media (max-width: 767.98px) {
    .vr4-video-section .vr4-section-title .fs-40 {
      font-size: 24px;
    }
  }
  
  .vr4-video-box {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  .vr4-video-box .vr4-play-btn {
    width: 120px;
    height: 120px;
    background-color: var(--white-color);
    border-radius: 50%;
    color: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .vr4-video-box .vr4-play-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  @media (max-width: 767.98px) {
    .vr4-video-box {
      height: 500px;
    }
  
    .vr4-video-box .vr4-play-btn {
      height: 80px;
      width: 80px;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr4-video-box {
      height: 400px;
    }
  }
  
  /********************** banner section start ******************/
  .vr4-banner-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .vr4-banner-section .vr4-banner-image {
    width: 50%;
    background-size: 100% calc(100% + 15px);
    background-position: 0 -10px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-banner-section .vr4-banner-image:hover {
    background-position: 0 0;
  }
  
  @media (max-width: 1199.98px) {
    .vr4-banner-section .vr4-banner-image {
      background-size: cover;
      background-position: center center;
    }
  }
  
  .vr4-banner-section .vr4-banner-box {
    width: 50%;
    padding: 100px;
    background-color: var(--primary-color);
    position: relative;
  }
  
  @media (max-width: 1399.98px) {
    .vr4-banner-section .vr4-banner-box {
      padding: 100px 40px;
    }
  }
  
  @media (max-width: 991.98px) {
    .vr4-banner-section {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .vr4-banner-section .vr4-banner-image {
      width: 100%;
      height: 400px;
    }
  
    .vr4-banner-section .vr4-banner-box {
      width: 100%;
    }
  }
  
  .vr4-banner-box .circle-shape {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background-color: #1A1919;
    left: 50px;
    bottom: -500px;
  }
  
  .vr4-banner-box span {
    text-transform: uppercase;
    font-size: 14px;
    display: block;
  }
  
  .vr4-banner-box h3 {
    color: var(--white-color);
    max-width: 500px;
  }
  
  /****************** custom made section ******************/
  .int-design .explore-btn {
    width: 120px;
    height: 120px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .int-design .explore-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .cmd-slider .slick-dots {
    position: absolute;
    top: -34px;
    right: 0;
  }
  
  .cmd-slider .slick-dots li {
    display: inline-block;
    position: relative;
  }
  
  .cmd-slider .slick-dots li::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    width: 55px;
    height: 55px;
    opacity: 0;
    visibility: hidden;
  }
  
  .cmd-slider .slick-dots li button {
    font-size: 14px;
    font-family: var(--hm2-font-family);
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cmd-slider .slick-dots li button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    top: 50%;
    left: 40px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .cmd-slider .slick-dots li.slick-active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .cmd-slider .slick-dots li.slick-active button {
    margin-right: 60px;
    margin-left: 20px;
  }
  
  .cmd-slider .slick-dots li.slick-active button::after {
    width: 50px;
  }
  
  @media (max-width: 575.98px) {
    .cmd-slider .slick-dots {
      position: initial;
      margin-top: 60px;
      text-align: center;
    }
  }
  
  /********************ooffer section start *****************/
  .vr4-offer-box {
    height: 580px;
    padding: 56px 60px;
    background-size: 100% calc(100% + 20px);
    background-position: 0 -10px;
    background-repeat: no-repeat;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-offer-box .white-btn {
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 50px;
    font-size: 14px;
    border: 1px solid var(--primary-color);
  }
  
  .vr4-offer-box .white-btn:hover {
    border-color: var(--secondary-color);
  }
  
  .vr4-offer-box.centered-content {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .vr4-offer-box:hover {
    background-position: 0 0;
  }
  
  @media (max-width: 1399.98px) {
    .vr4-offer-box {
      padding: 50px 40px;
    }
  }
  
  @media (max-width: 991.98px) {
    .vr4-offer-box {
      background-size: cover;
      background-position: bottom right;
    }
  
    .vr4-offer-box:hover {
      background-size: cover;
      background-position: bottom right;
    }
  }
  
  /************************* feedback section start **********************/
  .vr4-feedback-section {
    border-top: 1px solid #F0F0F0;
  }
  
  .vr4-feedback-slider .slick-dots {
    margin-top: 40px;
    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: 4px;
  }
  
  .vr4-feedback-slider .slick-dots li {
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-feedback-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    background-color: #E6E6E6;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr4-feedback-slider .slick-dots li.slick-active {
    border-color: var(--primary-color);
  }
  
  .vr4-feedback-slider .slick-dots li.slick-active button {
    background-color: var(--primary-color);
  }
  
  .vr4-feedback-single {
    background-color: #F9F9F9;
    padding: 60px 60px 80px;
  }
  
  .vr4-feedback-single .feedback-top {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .vr4-feedback-single .feedback-top img {
    width: 70px;
  }
  
  .vr4-feedback-single p {
    font-size: 24px;
    line-height: 36px;
  }
  
  @media (max-width: 767.98px) {
    .vr4-feedback-single {
      padding: 40px;
    }
  
    .vr4-feedback-single p {
      font-size: 18px;
      line-height: 1.6em;
    }
  }
  
  /********************************** hero section start ****************************/
  .vr5-hero-section {
    background-color: #F2F2F0;
  }
  
  .vr5-hero-section .flower-shape {
    mix-blend-mode: multiply;
  }
  
  .vr5-hero-section .vr5-hero-banner {
    height: 800px;
    border-right: 1px solid var(--primary-color);
    background-repeat: no-repeat;
    background-size: calc(100% + 20px) 100%;
    background-position: 0 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-hero-section .vr5-hero-banner:hover {
    background-position: -15px 0;
  }
  
  @media (max-width: 1199.98px) {
    .vr5-hero-section .vr5-hero-banner {
      height: 350px;
      background-position: center center;
      background-size: cover;
    }
  
    .vr5-hero-section .vr5-hero-banner:hover {
      background-position: center center;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr5-hero-section .flower-shape {
      width: 130px;
    }
  }
  
  .vr5-hero-content-slider {
    max-width: 640px;
    padding: 150px 0 120px 100px;
    position: relative;
    z-index: 1;
  }
  
  .vr5-hero-content-slider h1 {
    font-size: 60px;
    line-height: 70px;
  }
  
  .vr5-hero-content-slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
  }
  
  .vr5-hero-content-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    background-color: #D3D3D3;
    border-radius: 50%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-hero-content-slider .slick-dots li.slick-active button {
    background-color: var(--primary-color);
  }
  
  @media (max-width: 1199.98px) {
    .vr5-hero-content-slider {
      padding: 100px 0 100px 100px;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr5-hero-content-slider {
      padding: 80px 24px 80px;
    }
  
    .vr5-hero-content-slider h1 {
      font-size: 45px;
      line-height: 1.3em;
    }
  }
  
  /******************* ticker section start *****************/
  .vr5-ticker-area {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
  }
  
  .ticker-wrapper .ticker.vr5-ticker span+span::before {
    background-color: var(--primary-color);
  }
  
  /****************** collection slider start ******************/
  .vr5-collection-slider .slick-dots {
    position: absolute;
    top: -88px;
    right: 0;
  }
  
  .vr5-collection-slider .slick-dots li {
    display: inline-block;
    position: relative;
  }
  
  .vr5-collection-slider .slick-dots li::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    width: 55px;
    height: 55px;
    opacity: 0;
    visibility: hidden;
  }
  
  .vr5-collection-slider .slick-dots li button {
    font-size: 14px;
    font-family: var(--hm2-font-family);
    color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-collection-slider .slick-dots li button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    top: 50%;
    left: 40px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-collection-slider .slick-dots li.slick-active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .vr5-collection-slider .slick-dots li.slick-active button {
    margin-right: 60px;
    margin-left: 20px;
  }
  
  .vr5-collection-slider .slick-dots li.slick-active button::after {
    width: 50px;
  }
  
  @media (max-width: 767.98px) {
    .vr5-collection-slider .slick-dots {
      position: initial;
      margin-top: 60px;
      text-align: center;
    }
  }
  
  .vr5-collection-progressbar {
    width: 100%;
    height: 3px;
    background-color: #EEEEEE;
    position: relative;
  }
  
  .vr5-collection-progressbar .vr5-collection-progress {
    height: 100%;
    width: 20%;
    background-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  @media (max-width: 767.98px) {
    .vr5-collection-progressbar {
      display: none;
    }
  }
  
  /******************* category section start *****************/
  .vr5-ct-single-box {
    border: 1px solid var(--primary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .vr5-ct-single-box img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
  }
  
  .vr5-ct-single-box .explore-btn {
    width: 200px;
    height: 55px;
    background-color: var(--white-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  .vr5-ct-single-box .explore-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-ct-single-box .explore-btn:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
  }
  
  .vr5-ct-single-box .explore-btn:hover::before {
    height: 100%;
  }
  
  .vr5-ct-single-box:hover img {
    margin-left: -15px;
  }
  
  .vr5-ct-single-box.large-box img {
    width: calc(100% + 31px);
    max-width: calc(100% + 31px);
  }
  
  /******************** filter section start *******************/
  .vr5-filter-nav {
    gap: 20px;
  }
  
  .vr5-filter-nav li a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: relative;
  }
  
  .vr5-filter-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-filter-nav li a.active::before {
    width: 100%;
  }
  
  .vr5-filter .tab-content {
    position: relative;
  }
  
  .vr5-filter .tab-content .tab-pane {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block !important;
    opacity: 0;
    visibility: hidden;
  }
  
  .vr5-filter .tab-content .tab-pane.active {
    opacity: 1;
    visibility: visible;
    -webkit-animation: 0.5s theme_fadeInUp;
    animation: 0.5s theme_fadeInUp;
  }
  
  .vr5-filter .tab-content .vr5-product-card .feature-image {
    height: 500px;
  }
  
  .vr5-filter .tab-content .vr5-product-card p {
    line-height: 22px;
  }
  
  @media (max-width: 1199.98px) {
    .vr5-filter .tab-content .tab-pane .vr5-product-card .feature-image {
      height: 360px;
    }
  }
  
  .vr5-filter-slider .slick-dots {
    margin-top: 40px;
    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: 4px;
  }
  
  .vr5-filter-slider .slick-dots li {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-filter-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    background-color: #E6E6E6;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
  }
  
  .vr5-filter-slider .slick-dots li.slick-active {
    border-color: var(--primary-color);
  }
  
  .vr5-filter-slider .slick-dots li.slick-active button {
    background-color: var(--primary-color);
  }
  
  /**************** action products start *****************/
  .vr5-action-area {
    height: 850px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .vr5-product-tooltip {
    position: absolute;
    z-index: 1;
  }
  
  .vr5-product-tooltip button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
  }
  
  .vr5-product-tooltip button span {
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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%;
  }
  
  .vr5-product-tooltip .vr5-tooltip-product {
    padding: 30px;
    background-color: var(--white-color);
    position: absolute;
    left: 60px;
    top: 0;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-tooltip .vr5-tooltip-product .feature-image {
    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-bottom: 30px;
    height: 170px;
  }
  
  .vr5-product-tooltip .vr5-tooltip-product .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-tooltip .vr5-tooltip-product .tooltip-product-content h5 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr5-product-tooltip .vr5-tooltip-product .tooltip-product-content h5:hover {
    color: var(--secondary-color);
  }
  
  .vr5-product-tooltip .vr5-tooltip-product:hover .feature-image img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
  }
  
  .vr5-product-tooltip .vr5-tooltip-product.active {
    opacity: 1;
    visibility: visible;
  }
  
  .vr5-product-tooltip.tooltip-1 {
    top: 26%;
    left: 22%;
  }
  
  .vr5-product-tooltip.tooltip-2 {
    left: 58%;
    bottom: 25%;
  }
  
  .vr5-product-tooltip.tooltip-2 .vr5-tooltip-product {
    top: -110px;
  }
  
  .vr5-product-tooltip.tooltip-3 {
    right: 30%;
    top: 15%;
  }
  
  .vr5-product-tooltip.tooltip-3 .vr5-tooltip-product {
    top: -60px;
  }
  

  
  .vr5-blog-card .outline-primary:hover {
    border-color: var(--secondary-color);
    color: var(--white-color);
  }
  
  .vr5-blog-card .outline-primary:hover::before {
    height: 100%;
  }
  
  .vr5-blog-card:hover {
    border-color: var(--primary-color);
  }
  
  .vr5-blog-card:hover .feature-image img {
    margin-left: -10px;
  }
  
  @media (max-width: 1399.98px) {
    .vr5-blog-card p {
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .vr5-blog-card h4 {
      font-size: 24px;
      line-height: 1.3em;
      margin-bottom: 32px;
    }
  }
  
  /************************* feature section start *************************/
  .vr5-feature-box {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
  }
  
  .vr5-feature-box .icon-box.border-right::after {
    background-color: var(--primary-color);
  }
  
  .vr6-light-bg {
    background-color: #F8F8F8;
  }
  
  @media (max-width: 991.98px) {
    .vr6-hero-section {
      background-color: #F2F2F0;
    }
  }
  
  .vr6-hero-custom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  
  .vr6-hero-custom-row .vr6-hero-box {
    width: 79.4%;
    background-color: #F2F2F0;
    padding: 118px 135px 93px 100px;
  }
  
  .vr6-hero-custom-row .vr6-hero-box h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2em;
  }
  
  .vr6-hero-custom-row .vr6-hero-box .circle-shape {
    width: 338px;
    height: 338px;
    background-color: #E9E9E3;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: -110px;
    top: 0;
  }
  
  .vr6-hero-custom-row .vr6-hero-box img {
    max-width: calc(100% + 60px);
    margin-left: -60px;
  }
  
  @media (max-width: 1199.98px) {
    .vr6-hero-custom-row .vr6-hero-box {
      width: 100%;
    }
  
    .vr6-hero-custom-row .vr6-hero-box img {
      margin-left: 0;
      max-width: 100%;
    }
  
    .vr6-hero-custom-row .vr6-hero-box .circle-shape {
      display: none;
    }
  }
  
  @media (max-width: 991.98px) {
    .vr6-hero-custom-row .vr6-hero-box {
      padding: 118px 0 93px 40px;
    }
  
    .vr6-hero-custom-row .vr6-hero-box img {
      margin-top: 60px;
    }
  }
  
  @media (max-width: 767.98px) {
    .vr6-hero-custom-row .vr6-hero-box {
      padding: 40px 24px;
    }
  
    .vr6-hero-custom-row .vr6-hero-box img {
      margin-top: 40px;
    }
  }
  
  @media (max-width: 575.98px) {
    .vr6-hero-custom-row .vr6-hero-box h1 {
      font-size: 50px;
      line-height: 1.2em;
    }
  }
  
  .vr6-hero-content .white-btn {
    padding: 16px 34px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .vr6-hero-content .white-btn:hover {
    border-color: var(--secondary-color);
  }
  
  .vr6-hero-list li {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
  }
  
  .vr6-hero-list li i {
    margin-right: 10px;
  }
  
  .vr6-hero-list li+li {
    margin-top: 15px;
  }
  
  .vr6-hero-slider .slick-list {
    margin: 0 -12px;
  }
  
  .vr6-hero-slider .slick-list .slick-slide {
    margin: 0 12px;
  }
  
  .vr6-hero-slider .slick-dots {
    position: absolute;
    right: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .vr6-hero-slider .slick-dots li {
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    border-radius: 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;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-hero-slider .slick-dots li button {
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 0;
    font-size: 0;
  }
  
  .vr6-hero-slider .slick-dots li.slick-active {
    border-color: var(--primary-color);
  }
  
  @media (max-width: 575.98px) {
    .vr6-hero-slider .slick-dots {
      display: none;
    }
  }
  
  .vr6-offer-box {
    height: 400px;
    padding: 48px 40px;
    background-size: 100% calc(100% + 20px);
    background-position: 0 -10px;
    background-repeat: no-repeat;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-offer-box .white-btn {
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    width: 170px;
    height: 45px;
    line-height: 45px;
    text-align: center;
  }
  
  .vr6-offer-box .white-btn:hover {
    border-color: var(--secondary-color);
  }
  
  .vr6-offer-box.centered-content {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .vr6-offer-box:hover {
    background-position: 0 0;
  }
  
  @media (max-width: 1399.98px) {
    .vr6-offer-box {
      padding: 50px 40px;
    }
  }
  
  @media (max-width: 991.98px) {
    .vr6-offer-box {
      background-size: cover;
      background-position: bottom right;
    }
  
    .vr6-offer-box:hover {
      background-size: cover;
      background-position: bottom right;
    }
  }
  
  /**************** filter collections *******************/
  .vr6-filter-btns {
    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;
  }
  
  .vr6-filter-btns button {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
  }
  
  .vr6-filter-btns button.active {
    color: var(--primary-color);
  }
  
  @media (max-width: 575.98px) {
    .vr6-filter-btns {
      gap: 24px;
    }
  }
  
  .vr6-newsletter-box h3 {
    font-size: 30px;
    line-height: 44px;
  }
  
  @media (max-width: 575.98px) {
    .vr6-newsletter-box h3 {
      font-size: 18px;
      line-height: 1.5em;
    }
  }
  
  .vr6-newsletter-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    padding: 10px;
  }
  
  .vr6-newsletter-form input {
    width: 100%;
    border: 0;
    padding-left: 20px;
  }
  
  .vr6-newsletter-form button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 11px 24px;
    text-transform: uppercase;
    font-size: 14px;
  }
  
  .vr6-blog-section {
    background-color: #F8F7F3;
  }
  
  .vr6-offer-box-1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -10px center;
    position: relative;
    z-index: 1;
    padding: 150px 24px 160px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    background-attachment: fixed;
  }
  
  .vr6-offer-box-1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.30;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: -1;
  }
  
  .vr6-offer-box-1 .vr6-offer-content {
    max-width: 395px;
    margin: 0 auto;
    text-align: center;
  }
  
  .vr6-offer-box-1 .vr6-offer-content h1 {
    font-size: 72px;
    font-weight: 500;
    line-height: 78px;
  }
  
  .vr6-offer-box-1 .outline-btn {
    position: relative;
    z-index: 1;
  }
  
  .vr6-offer-box-1 .outline-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-offer-box-1 .outline-btn:hover {
    border-color: var(--secondary-color);
    color: var(--white-color);
  }
  
  .vr6-offer-box-1 .outline-btn:hover::before {
    height: 100%;
  }
  
  @media (max-width: 767.98px) {
    .vr6-offer-box-1 .vr6-offer-content h1 {
      font-size: 50px;
      line-height: 60px;
    }
  }
  
  .vr6-offer-box-2 {
    height: 650px;
    background-size: cover;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .vr6-offer-box-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
  }
  
  .vr6-offer-box-2 .vr6-offer-content {
    text-align: center;
  }
  
  .vr6-offer-box-2 .vr6-offer-content .template-btn {
    margin-top: 280px;
  }
  
  .notfound-area {
    padding: 60px 0;
  }
  
  .notfound-content .outline-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
  }
  
  .notfound-content .outline-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
  }
  
  .notfound-content .outline-btn:hover {
    border-color: var(--secondary-color);
    color: var(--white-color);
  }
  
  .notfound-content .outline-btn:hover::before {
    height: 100%;
  }
  
  
  
  
  /* Category */
  
  .hm2-filter-products {
    padding: 70px 0;
    background-color: #f9f9f9;
  }
  
  .left-content {
    padding: 20px;
    text-align: right;
  }
  
  
  .category-heading {
      font-weight: bold;
      color: #333;
      font-weight: 600;
      font-size: 3em;
      line-height: 45px;
  }
  
  /* Style for "Explore Now" link */
  .explore-btn {
    display: inline-block;
    margin-top: 8px;
    color: #79060694;
    text-decoration: none;
    border-bottom: 2px solid #14030394; 
    transition: border-color 0.3s ease;
  }
  
  .explore-btn:hover {
    border-bottom: 2px solid #007bff; /* Underline on hover */
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .image-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .image-item:hover img {
    transform: scale(1.1);
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }
  
  .overlay-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    text-align: center;
  }
  
  .image-item:hover .overlay {
    opacity: 1;
  }
  
  /* Center the left-content vertically on larger screens */
  @media (min-width: 992px) {
    .row {
      display: flex;
   
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .category-heading {
      font-size: 24px;
    }
  
    .left-content {
      padding: 10px;
      margin-top: 0; /* Remove extra top margin */
      text-align: left;
    }
  
    .hm2-filter-products {
      padding-top: 30px; /* Reduce overall top padding for the section */
    }
  
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
      .category-heading {
        font-weight: bold;
        color: #333;
        font-weight: 600;
        font-size: 1.5em;
        line-height: 21px;
    }
    .explore-btn{
        margin-bottom: 14px;
    }
  
  }
  
  @media (max-width: 576px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .overlay-text {
      font-size: 15px;
      padding: 10px 20px;
    }
  
    .left-content {
      padding: 5px;
      margin-top: 0; /* Further reduced top margin for smaller screens */
      text-align: left;
    }
  
  
    .hm2-filter-products {
      padding-top: 20px; /* Ensure minimal padding for small screens */
    }
    .explore-btn{
        margin-bottom: 14px;
    }
  
  }
  
  
  
  
  /* showcase start */
  
  .showcase {
    padding: 0px 25px;
    position: relative; /* Ensures arrows are positioned inside the container */
    overflow: hidden; /* Prevents arrows from spilling outside */
  }
  
  .showcase_small_item,
  .showcase_large_item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 12px 0px 12px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .showcase_small_item img,
  .showcase_large_item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill their container without distortion */
    transition: all linear 1s;
    -webkit-transition: all linear 1s;
    -moz-transition: all linear 1s;
    -ms-transition: all linear 1s;
    -o-transition: all linear 1s;
  }
  
  .showcase_large_item {
    height: 830px;
    margin-top: 25px;
  }
  
  /* Adjust for small screen devices */
  @media (max-width: 992px) {
    .showcase_small_item {
      height: 350px; /* Adjusted for smaller screens */
    }
    .showcase_large_item {
      height: 600px; /* Adjusted for smaller screens */
    }
  }
  
  /* Showcase Slider Arrows */
  .showcase .nextArrow,
  .showcase .prevArrow {
    position: absolute; /* Ensure proper placement inside the slider */
    top: 50%;           /* Center vertically */
    transform: translateY(-50%); /* Adjust to center the arrows */
    background: transparent;
    color: white;
    border: none;
    font-size: 30px;
    opacity: 0.5;
    z-index: 10; /* Ensure arrows appear above the images */
    cursor: pointer;
  }
  
  .showcase .nextArrow {
    right: 15px; /* Adjust distance from the right edge */
  }
  
  .showcase .prevArrow {
    left: 15px; /* Adjust distance from the left edge */
  }
  
  .showcase .nextArrow:hover,
  .showcase .prevArrow:hover {
    opacity: 1;
  }
  
  
  
  
  /* showcase end */
  
  
  /* single product banner start*/
  
  
  .single_product_banner {
    background: #F2F1F1;
    max-width: 100%; /* Ensure the container does not exceed the screen width */
    overflow: hidden; /* Hide any overflow */
  }
  
  .single_product_banner_text {
    text-align: right;
    padding-right: 50px;
    padding-left: 80px;
  }
  
  .single_product_banner_text h2 {
    text-align: right;
  }
  
  .single_product_banner_text p {
    text-align: right;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 13px;
    padding-left: 160px;
  }
  
  .single_product_banner_text a {
    font-size: 22px;
    font-weight: 500;
    color: black;
    text-decoration: underline;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  
  .single_product_banner_text a:hover {
    text-decoration: none;
    color: var(--colorPrimary);
  }
  
  .single_product_thumb {
    display: block;
    padding: 0px 255px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 12px 13px 12px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .single_product_thumb img{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .single_product_banner img {
    width: 100%; /* Ensure images take up full width but don't exceed the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop the images without distorting them */
  }
  
  
  .single_product_small {
    background: white;
    margin: 0px 12px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .single_product_small .img {
    height: auto !important;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .single_product_small .text {
    padding: 15px;
    text-align: center;
  }
  
  .single_product_small .text p a {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: rgb(97, 16, 5);
  }
  
  .single_product_small .text a {
    font-size: 16px;
    color: rgb(20, 7, 5);
  }
  
  /* single product banner end */
  
  
  .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 20px;
    background: #ffffff8c;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  
  .slick-dots li button::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--colorPrimary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  
  .slick-dots li.slick-active button,
  .slick-dots li button:hover {
    background: white;
  }
  
  .slick-dots li.slick-active button::after,
  .slick-dots li button:hover::after {
    opacity: 1;
  }
  
  
  .nextArrow,
  .prevArrow {
      width: 45px;
      height: 45px;
      line-height: 45px !important;
      text-align: center;
      padding: 0;
      background: white;
      cursor: pointer;
      font-size: 20px;
      border-radius: 50%;
      border: 1px solid var(--borderColor);
      transition: all linear .3s;
      -webkit-transition: all linear .3s;
      -moz-transition: all linear .3s;
      -ms-transition: all linear .3s;
      -o-transition: all linear .3s;
      z-index: 9;
  }
  
  .nextArrow:hover,
  .prevArrow:hover {
      color: white;
      background: rgb(112, 7, 7);
      border-color: var(--colorPrimary);
  }
  
  .nextArrow,
  .prevArrow {
      position: absolute;
      top: 50%;
      right: 13px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
  }
  
  .prevArrow {
      right: auto;
      left: -12px;
  }
  
  
  
  
  
  /* Section title styling */
  .vr4-Popular-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    display: inline-block; /* Ensures the arrow stays inline */
    margin-left: 20px; /* Adds space from the left */
  }
  
  .vr4-Popular-section .section-title span {
    margin-left: 5px; /* Minimal space between the title and the arrow */
    font-size: inherit; /* Matches the title's font size */
    color: inherit; /* Same color as the title */
    vertical-align: middle; /* Aligns arrow with text */
  }
  /* Gallery container */
  .furniture-gallery {
    display: flex;
    gap: 20px; /* Spacing between items */
    overflow-x: auto; /* Enable horizontal scrolling for small screens */
    padding: 10px 0;
  }
  
  /* Individual furniture item */
  .furniture-item {
    flex: 0 0 calc(20% - 20px); /* Ensures 5 items per row with spacing */
    text-align: center;
    background-color: #f9f9f9; /* Light background */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease;
  }
  
  .furniture-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
  }
  
  /* Image styling */
  .furniture-item img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 10px; /* Space between image and text */
  }
  
  /* Text styling */
  .furniture-item p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  
  
  /* Offer Section */
  
  .vr4-offer-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    display: inline-block;
    margin-left: 20px; /* Adds space from the left */
  }
  
  .vr4-offer-section .section-title span {
    margin-left: 5px; /* Adds space between the text and the arrow */
    font-size: inherit;
    color: inherit;
    vertical-align: middle;
  }
  
  
  /* Clients */
  
  .vr4-clients-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    display: inline-block;
    margin-left: 20px; /* Adds space from the left */
  }
  
  .client-card {
    border: 1px solid #dddddd00; /* Card border */
    border-radius: 8px; /* Rounded corners */
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff00;
  }
  
  .client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .client-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
  }
  
  .client-card .client-name {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 5px;
  }
  
  
  
  /* Category product page */
  
  
  .new-arrival-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #ff6f61; /* Set your desired background color */
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
  }
  
  
  .image-hover-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .image-hover-wrapper .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .image-hover-wrapper .main-image {
    transition: opacity 0.3s ease-in-out;
  }
  
  .image-hover-wrapper:hover .main-image {
    opacity: 0;
  }
  
  .image-hover-wrapper:hover .hover-image {
    opacity: 1;
  }
  
  
  /* Button base styles */
  .load-more-btn {
    display: inline-block;
    padding: 16px 32px; /* Increased padding for a larger button */
    font-size: 18px; /* Larger font size for better visibility */
    font-weight: 600; /* Bold font for emphasis */
    color: #020101; /* Stylish dark text color */
    background: linear-gradient(135deg, #c7d2de, #9fa8b3); /* Gradient background for a stylish effect */
    border: none;
    border-radius: 50px; /* Fully rounded button */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }
  
  /* Button hover effect */
  .load-more-btn:hover {
    background: linear-gradient(135deg, #5f0303, #a10d0d); /* Gradient change on hover */
    color: #ffffff; /* White text for contrast */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Elevated shadow on hover */
    transform: scale(1.1); /* Slightly larger button on hover */
  }
  
  /* Responsive font sizes */
  @media (max-width: 768px) {
    .load-more-btn {
      font-size: 16px; /* Slightly smaller font size */
      padding: 14px 28px; /* Adjusted padding */
    }
  }
  
  @media (max-width: 480px) {
    .load-more-btn {
      font-size: 14px; /* Smaller font for small screens */
      padding: 12px 24px; /* Compact padding for small devices */
    }
  }
  
  
  
  /* Default button styling  for Product Options*/
  
  .btn-color {
    position: relative;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  
  .btn-check:checked + .btn-color {
    border-color: #9e0404; /* Highlight border for selected button */
  }
  
  .btn-check:checked + .btn-color::after {
    content: '\2713'; /* Unicode for checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: white;
  }
  
  
  
  .feature-image {
    position: relative;
    overflow: hidden;
  }
  
  .view-more-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #213555; /* Example color */
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-image:hover .view-more-btn {
    opacity: 1;
  }
  
  
  .ptb-43 {
    padding: 40px 0;
  }
  
  
  

  .bg-red {
    background : #E31013;
  }


  @media (min-width: 1600px) and (max-width: 1800px) {

    
    .single_product_thumb {
      height: auto;
      padding: 0px 160px;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }


  }

  /* Slider Slide bottom */


  @media (min-width: 1400px) and (max-width: 1599.99px) {

    .single_product_thumb {
      height: auto;
      padding: 0px 120px;
    }

    .single_product_small .img {
        height: auto;
    }

    .single_product_small .text a {
        font-size: 14px;
    }

    .single_product_banner_text p {
        padding-left: 0;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

  }




  @media (min-width: 1600px) and (max-width: 1800px) {

    /* HOME PAGE START */
    .category_img {
        height: auto;
    }

    .category_img p {
        padding: 40px;
    }

    .add_banner_item {
        height: 750px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .single_product_thumb {
        height: auto;
        padding: 0px 160px;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .single_testimonial .text {
        width: 100%;
    }

    .imei_img {
        height: 675px;
    }

    .founder_testimonial_img {
        height: 670px;
    }

    /* HOME PAGE END */

    /* HOME PAGE START */
    .about_top_banner {
        height: 400px;
    }

    .about_us_item_img {
        height: 450px;
    }

    /* HOME PAGE END */

    /* PRODUCT START */
    .single_product_img {
        height: auto;
    }

    /* PRODUCT END */
    .category_page_item .img {
        height: auto;
    }

    .category_product .single_product_img {
        height: auto;
    }
}

@media (min-width: 1400px) and (max-width: 1599.99px) {

    /* HOME PAGE START */
    .main_menu .navbar-nav .nav-item .nav-link {
        padding: 0px 15px;
    }

    .category_img {
        height: auto;
    }

    .category_img p {
        padding: 35px;
    }

    .section_heading {
        font-size: 54px;
    }

    .categories_text {
        padding-right: 30px;
    }

    .add_banner_item {
        height: 655px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .single_product_thumb {
        height: auto;
        padding: 0px 120px;
    }

    .single_product_small .img {
        height: auto;
    }

    .single_product_small .text a {
        font-size: 14px;
    }

    .single_product_banner_text p {
        padding-left: 0;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .single_testimonial .text {
        width: auto;
    }

    .imei_img {
        height: 590px;
    }

    .founder_testimonial_img {
        height: 590px;
    }

    .footer_logo_area ul li a,
    .footer_logo_area ul li p {
        max-width: 90%;
    }

    /* HOME PAGE END */

    /* HOME PAGE START */
    .about_top_banner {
        height: 400px;
    }

    .about_us_item_img {
        height: 480px;
    }

    /* HOME PAGE END */

    /* CATEGORY START */
    .category_page_item {
        width: 100%;
    }

    .category_page_item .img {
        height: auto;
    }

    .category_product .single_product_img {
        height: auto;
    }

    .single_product_text .title {
        font-size: 15px;
    }

    /* CATEGORY END */

    /* PRODUCT START */
    .single_product_img {
        height: auto;
    }

    /* PRODUCT END */

    /* PRODUCT DETAILS START */
    .product_details_content .details_heading {
        font-size: 28px;
    }

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

    .product_details_thumb {
        height: auto;
    }

    .product_details_small {
        height: auto;
    }

    .details_img {
        height: 500px;
    }

    

    /* PRODUCT DETAILS END */
    .banner {
        height: auto;
    }

    .main_menu .navbar-brand {
        width: 150px;
    }

    .mega_menu_list ul li a,
    .main_menu .navbar-nav .nav-item .droap_menu li a {
        font-size: 15px;
    }

    .mega_menu_list ul {
        line-height: 30px;
    }

    .details_color ul li {
        width: 55px;
        height: 55px;
    }

    .details_payment .details_payment_slider_area {
        max-width: 330px;
    }

    .details_payment .details_payment_item {
        height: 40px;
    }

    .product_details_sidebar .details_btn_area li a {
        padding: 11px 5px;
    }

    .related_product .single_product_img {
        height: auto;
    }

}

@media (min-width: 1401px) and (max-width: 1450px) {
    .main_menu .navbar-nav .nav-item .nav-link {
      padding: 0px 12px; /* Adjust padding for this specific range */
    }
  }

@media (min-width: 1200px) and (max-width: 1399.99px) {

    /* HOME PAGE START */
    .main_menu {
        padding: 0 25px;
    }

    .main_menu .navbar-brand {
        width: 120px;
    }

    .main_menu .navbar-nav .nav-item .nav-link {
        padding: 0px 8px;
        font-size: 14px;
    }

    .main_menu .right_menu>li>a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .main_menu .right_menu {
        gap: 5px;
    }

    .category_img {
        height: auto;
    }

    .categories_text {
        padding-right: 20px;
    }

    .section_heading {
        font-size: 56px;
    }

    .add_banner_item {
        height: 560px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .single_product_banner_text {
        padding-right: 20px;
        padding-left: 30px;
    }

    .single_product_banner_text p {
        padding-left: 70px;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .imei_img {
        height: 500px;
    }

    .founder_testimonial_img {
        height: 500px;
    }

    .footer_link ul li a {
        font-size: 14px;
    }

    .footer_logo_area ul li a,
    .footer_logo_area ul li p {
        font-size: 14px;
        max-width: 100%;
    }

    .payment_logo {
        margin-top: 10px;
    }

    .categories_text p {
        font-size: 20px;
    }

    /* HOME PAGE END */

    /* ABOUT PAGR START */
    .about_top_banner {
        height: 330px;
    }

    .about_us_item_img {
        height: 400px;
    }

    .about_us_item_exparience {
        margin-top: 0;
    }

    /* ABOUT PAGR END */

    /* TEAM START */
    .team_banner_img {
        height: 350px;
    }

    .team_founders_img {
        height: 450px;
    }

    .team_founders_text {
        padding: 70px 40px;
    }

    .team_employe .img {
        height: 210px;
    }

    /* TEAM END */

    /* FAQ START */
    .faq_accordion .accordion-button::after {
        left: -1056px;
    }

    .faq_accordion .accordion-button {
        padding: 11px 12px 11px 60px;
    }

    .faq_accordion .accordion-body {
        padding: 23px 25px 32px 60px;
    }

    /* FAQ END */

    /* BLOG START */
    .single_blog {
        padding: 15px;
    }

    .single_blog_img {
        height: 240px;
    }

    /* BLOG END */

    /* CONTACT START */
    .contact_text {
        padding: 15px 20px 20px 20px;
    }

    .contact_address {
        padding: 15px 20px 20px 20px;
    }

    .contact_address_map {
        height: 380px;
    }

    /* CONTACT END */

    /* CHECKOUT START */
    .checkout_info {
        padding: 15px 20px 20px 20px;
    }

    .checkout_order_summery {
        padding: 15px 20px 20px 20px;
    }

    /* CHECKOUT END */

    /* TEAM DETAILS START */
    .team_details_img {
        height: 500px;
    }

    /* TEAM DETAILS END */

    /* BLOG DETAILS START */
    .blog_details_img {
        height: 350px;
    }

    .blog_details_text .details_center_img {
        height: 260px;
    }

    .single_blog_det_review .text {
        width: 85%;
    }

    .single_blog_det_review.reply .text {
        width: 84%;
    }

    .sidebar_post ul li .text {
        width: 65%;
    }

    /* BLOG DETAILS END */

    /* BE_FRANTHISE START */
    .be_franthise_item p {
        font-size: 13px;
    }

    /* BE_FRANTHISE END */

    /* CATEGORY START */
    .category_page_item {
        width: 100%;
    }

    .category_page_item .img {
        height: auto;
    }

    .category_product .single_product_img {
        height: auto;
    }

    /* CATEGORY END */

    /* PRODUCT START */
    .single_product_img {
        height: auto;
    }

    /* PRODUCT END */

    /* PRODUCT DETAILS START */
    .product_details_thumb {
        height: auto;
    }

    .product_details_small {
        height: auto;
    }

    .details_color ul li {
        width: 65px;
        height: 65px;
    }

    .product_details_content .details_heading {
        font-size: 22px;
    }

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

    .details_payment .details_payment_item {
        height: 35px;
    }

    .details_btn_area li {
        width: 47%;
    }

    .details_img {
        height: 550px;
    }

    .related_product .single_product_img {
        height: 220px;
    }

    /* PRODUCT DETAILS END */

    /* DASHBOARD START */
    .order_tracking_line {
        justify-content: start;
    }

    .order_tracking_line li {
        width: 125px;
    }

    .order_tracking_line li::after {
        left: -48px;
        width: 95px;
    }

    .order_product_details_left .img_text {
        width: 70%;
    }

    /* DASHBOARD END */
    .category_img p {
        padding: 20px;
    }

    .single_product_thumb {
        height: auto;
        padding: 0px 100px;
    }

    .single_product_small .img {
        height: auto;
    }

    .banner {
        height: auto;
    }

    .banner #my_video {
        height: auto;
    }

    .mega_menu_list ul li a,
    .main_menu .navbar-nav .nav-item .droap_menu li a {
        font-size: 12px;
    }

    .mega_menu_list ul,
    .main_menu .navbar-nav .nav-item .droap_menu {
        line-height: 30px;
    }

    .mega_menu_list h3 {
        font-size: 14px;
    }

    .details_payment .details_payment_slider_area {
        max-width: 380px;
    }

    .details_payment_slider_area a {
        top: 3px;
    }

    .product_description_area {
        margin-bottom: 50px;
    }

    .related_product .single_product_img {
        height: auto;
    }

}

@media (min-width: 992px) and (max-width: 1199.99px) {

    /* HOME PAGE START */
    .categories_text,
    .categories_text p {
        text-align: center;
    }

    .category_img {
        height: auto;
    }

    .add_banner_item {
        height: 465px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .single_product_banner_text {
        padding-right: 0;
        padding-left: 0;
    }

    .single_product_banner_text h2 {
        font-size: 38px;
    }

    .single_product_banner_text p {
        font-size: 18px;
        padding-left: 0;
    }

    .single_product_thumb {
        height: auto;
        padding: 0px 100px;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .single_testimonial .text {
        width: 100%;
    }

    .imei_img {
        height: 420px;
    }

    .founder_testimonial_img {
        height: 415px;
    }

    .footer_logo_area {
        margin-bottom: 50px;
    }

    .category_img p {
        padding: 30px;
    }

    .payment_logo {
        margin-top: 5px;
    }

    /* HOME PAGE END */

    /* ABOUT PAGE START */
    .category_banner_img {
        height: 220px;
    }

    .about_top_banner {
        height: 280px;
    }

    .about_us_item_img {
        height: 400px;
    }

    .about_us_item_exparience {
        margin-top: 35px;
    }

    .about_item_nav {
        margin-left: 0;
    }

    .about_us_item_text {
        margin-left: 0;
    }

    .about_us_item_img_2 {
        margin-top: 30px;
    }

    .about_us_item_text_2 {
        margin-top: 30px;
    }

    .about_counter ul li h2,
    .about_counter ul li h2 span {
        font-size: 30px;
    }

    /* ABOUT PAGE END */

    /* CARRER START */
    .career_text_center {
        padding-bottom: 80px;
    }

    /* CARRER END */

    /* TEAM START */
    .team_banner_img {
        height: 300px;
    }

    .team_founders_img {
        height: 486px;
    }

    .team_founders_text {
        padding: 30px;
    }

    .team_employe .img {
        height: 550px;
    }

    /* TEAM END */

    /* FAQ START */
    .faq_accordion .accordion-button::after {
        left: -877px;
    }

    .faq_accordion .accordion-button {
        padding: 11px 12px 11px 60px;
    }

    .faq_accordion .accordion-body {
        padding: 23px 25px 32px 60px;
    }

    /* FAQ END */

    /* BLOG START */
    .single_blog_img {
        height: 300px;
    }

    /* BLOG END */

    /* CONTACT START */
    .contact_address_map {
        height: 400px;
    }

    /* CONTACT END */

    /* CHECKOUT START */
    .checkout_order_summery {
        margin-top: 30px;
    }

    /* CHECKOUT END */

    /* TEAM DETAILS START */
    .team_details_img {
        height: 500px;
    }

    /* TEAM DETAILS END */

    /* BLOG DETAILS START */
    .blog_details_img {
        height: 450px;
    }

    .blog_details_text .details_center_img {
        height: 350px;
    }

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

    /* BLOG DETAILS END */

    /* BE_FRANTHISE START */
    .be_franthise_item {
        margin-bottom: 25px;
    }

    /* BE_FRANTHISE END */

    /* CATEGORY START */
    .category_page_item {
        width: 100%;
    }

    .category_page_item .img {
        height: auto;
    }

    .category_product .single_product_img {
        height: auto;
    }

    /* CATEGORY END */

    /* PRODUCT START */
    .single_product_img {
        height: auto;
    }

    /* PRODUCT END */

    /* PRODUCT DETAILS START */
    .product_details_thumb {
        height: 830px;
    }

    .product_details_small {
        height: 150px;
    }

    .product_details_content {
        margin-top: 50px;
    }

    .details_img {
        height: 450px;
    }

    /* PRODUCT DETAILS END */

    /* DASHBOARD START */
    .order_tracking_line li::after {
        display: none;
    }

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

    .order_product_details_left .img_text {
        width: 60%;
    }

    /* DASHBOARD END */
    .add_banner_item .text {
        padding-right: 50px;
    }

    .banner {
        height: auto;
    }

    .banner #my_video {
        height: auto;
    }

    .banner .banner_slider_item {
        height: 700px;
    }




    .product_details_thumb {
        height: auto;
    }

    .product_details_small {
        height: auto;
    }

    .details_emi_modal .bank_name {
        width: 293px;
    }

    .product_description_area {
        margin-bottom: 50px;
    }

    .related_product .single_product_img {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {

    /* HOME PAGE START */
    .main_menu {
        padding: 0 10px;
        background: var(--colorWhite) !important;
    }

    .main_menu .container-fluid {
        padding: 0;
    }

    .main_menu .navbar-collapse {
        display: none;
    }

    .main_menu .navbar-brand {
        width: 150px;
    }

    .categories_text {
        text-align: center;
        padding-right: 0;
    }

    .section_heading {
        font-size: 32px;
    }

    .categories_text p {
        text-align: center;
        font-size: 16px;
    }

    .category_img {
        height: auto;
    }

    .category_img p {
        font-size: 26px;
        padding: 25px;
    }

    .add_banner_item .text h5 {
        font-size: 22px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_large_item {
        height: 95%;
    }

    .category_3_small_item {
        height: auto;
    }

    .single_product_banner_text {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 45px;
    }

    .single_product_banner_text h2 {
        text-align: center;
    }

    .single_product_banner_text p {
        text-align: center;
        font-size: 20px;
        padding-left: 0;
    }

    .single_product_thumb {
        height: auto;
        padding: 0px 100px;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .brand_area li {
        width: 22%;
        height: 80px;
    }

    .imei_img {
        height: 325px;
    }

    .founder_testimonial_img {
        height: 325px;
    }

    .footer_logo_area .footer_logo {
        width: 135px;
    }

    footer {
        padding: 50px 15px 30px 15px;
    }

    .footer_logo_area ul li a,
    .footer_logo_area ul li p {
        max-width: 100%;
    }

    .footer_link,
    .footer_facebook {
        margin-top: 50px;
    }

    .progress-wrap {
        right: 20px;
    }

    .single_testimonial .text {
        width: 100%;
    }

    .add_banner_item {
        height: 360px;
    }

    .payment_logo {
        margin-top: 5px;
    }

    .footer_logo_area {
        margin-top: 45px;
    }

    /* HOME PAGE END */

    /* ABOUT PAGE START */
    .category_banner_img {
        height: 250px;
    }

    .breadcrumb {
        padding: 0px 15px;
    }

    .about_us {
        padding: 0px 15px;
    }

    .about_top_banner {
        height: 250px;
    }

    .about_us_item_exparience {
        margin-left: 0;
    }

    .about_item_nav {
        margin-left: 0;
    }

    .about_us_item_img_2 {
        margin-top: 30px;
    }

    .about_us_item_img {
        height: 400px;
    }

    .about_us_item_text_2 {
        margin-top: 30px;
    }

    .about_us_item_text {
        margin-left: 0px;
    }

    .about_counter ul li {
        width: 50%;
    }

    /* ABOUT PAGE END */

    /* CARRER START */
    .career_text_center {
        padding-bottom: 60px;
    }

    /* CARRER END */

    /* TEAM START */
    .team_banner_img {
        height: 250px;
    }

    .team_founders_img {
        height: 750px;
    }

    .team_employe .img {
        height: 280px;
    }

    /* TEAM END */

    /* FAQ START */
    .faq_accordion .accordion-button::after {
        left: -638px;
    }

    .faq_accordion .accordion-button {
        padding: 11px 12px 11px 60px;
    }

    .faq_accordion .accordion-body {
        padding: 23px 25px 32px 20px;
    }

    /* FAQ END */

    /* BLOG START */
    .single_blog {
        padding: 15px;
    }

    .single_blog_img {
        height: 220px;
    }

    /* BLOG END */

    /* CONTACT START */
    .contanct_area {
        padding: 0px 15px;
    }

    .contact_address_map {
        height: 350px;
    }

    /* CONTACT END */

    /* CHECKOUT START */
    .checkout {
        padding: 0px 15px;
    }

    .checkout_order_summery {
        margin-top: 30px;
    }

    /* CHECKOUT END */

    /* CART START */
    .shoping_cart {
        padding: 0px 15px;
    }

    /* CART END */

    /* TEAM DETAILS START */
    .team_details_img {
        height: 720px;
    }

    .team_description {
        margin-left: 0;
        margin-top: 30px;
    }

    /* TEAM DETAILS END */

    /* BLOG DETAILS START */
    .blog_details_img {
        height: 330px;
    }

    .blog_details_text h2 {
        font-size: 28px;
    }

    .blog_details_text .details_center_img {
        height: 250px;
    }

    .single_blog_det_review .text {
        width: 85%;
    }

    .single_blog_det_review.reply .text {
        width: 83%;
    }

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

    /* BLOG DETAILS END */

    /* BE_FRANTHISE START */
    .be_franthise_item {
        margin-bottom: 25px;
    }

    /* BE_FRANTHISE END */

    /* CATEGORY START */
    .category_page_item {
        width: 100%;
    }

    .category_page_item .img {
        height: auto;
    }

    .category_product .single_product_img {
        height: auto;
    }

    /* CATEGORY END */

    /* PRODUCT START */
    .product_page {
        padding: 0px 15px;
    }

    .product_sidebar {
        margin-top: 25px;
    }

    .single_product_img {
        height: auto;
    }

    /* PRODUCT END */

    /* PRODUCT DETAILS START */
    .product_details_page {
        padding: 0px 15px;
    }

    .product_details_thumb {
        height: 600px;
    }

    .product_details_content {
        margin-top: 40px;
    }

    .details_img {
        height: 360px;
    }

    .related_product .single_product_img {
        height: auto;
    }

    /* PRODUCT DETAILS END */

    /* DASHBOARD START */
    .dashboard_right_heading .common_btn {
        margin-top: 20px;
    }

    .dashboard_sidebar {
        margin-bottom: 30px;
    }

    .order_tracking_line li::after {
        display: none;
    }

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

    .order_product_details {
        padding: 10px 10px 10px 10px;
        text-align: center;
    }

    .order_product_details_left {
        width: 100%;
    }

    .order_product_details_left .img_text {
        width: 100%;
        margin-left: 0;
    }

    .order_product_details .text {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .order_product_details_left .img {
        margin: auto;
        margin-bottom: 10px;
    }

    /* DASHBOARD END */
    .banner {
        height: auto;
        margin-top: 80px;
    }

    .banner #my_video {
        height: auto;
    }

    .banner .banner_slider_item a {
        border-radius: 10px;
        overflow: hidden;
    }

    .banner .banner_slider_item {
        height: 400px;
        margin: 0px 25px 25px 25px;
    }

    .banner_call {
        bottom: 40px;
        left: 30px;
    }

    .details_payment .details_payment_item {
        height: 70px;
    }

    .details_emi_modal .modal-dialog {
        max-width: 715px;
    }

    .details_emi_modal .bank_name {
        width: 258px;
    }

    .product_details_thumb {
        height: auto;
    }

    .product_details_small {
        height: auto;
    }

    .product_description_area {
        margin-bottom: 50px;
    }

    .flash_sell_heading_banner .simply-countdown {
        right: 5%;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {

    /* HOME PAGE START */
    .main_menu {
        padding: 0 10px;
        background: #F3EDED !important;
    }

    .main_menu .container-fluid {
        padding: 0;
    }

    .main_menu .navbar-collapse {
        display: none;
    }

    .main_menu .navbar-brand {
        width: 150px;
    }

    .categories_text {
        text-align: left;
        padding-right: 0;
    }

    .section_heading {
        font-size: 32px;
    }

    .categories_text p {
        text-align: left;
        font-size: 16px;
        margin-top: 0;
    }

    .categories,
    .category_3,
    .favourite_product,
    .single_product_banner,
    .showcase,
    .testimonial,
    .brand {
        padding: 0px 15px;
    }

    .category_img {
        height: auto;
    }

    .category_img p {
        font-size: 18px;
        padding: 35px;
    }

    .add_banner_item .text h5 {
        font-size: 22px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .single_product_banner_text {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 45px;
    }

    .single_product_banner_text h2 {
        text-align: center;
    }

    .single_product_banner_text p {
        text-align: center;
        font-size: 20px;
        padding-left: 0;
    }

    .single_product_thumb {
        height: auto;
        padding: 0;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .brand_area li {
        width: 30%;
        height: 80px;
    }

    .imei_img {
        height: 240px;
    }

    .founder_testimonial_img {
        height: 240px;
    }

    .footer_logo_area .footer_logo {
        width: 135px;
    }

    footer {
        padding: 50px 15px 30px 15px;
    }

    .footer_logo_area ul li a,
    .footer_logo_area ul li p {
        max-width: 100%;
    }

    .footer_link,
    .footer_facebook {
        margin-top: 50px;
    }

    .progress-wrap {
        right: 20px;
    }

    .single_testimonial .text {
        width: 100%;
    }

    .add_banner_item {
        height: 270px;
    }

    .payment_logo {
        margin-top: 5px;
    }

    /* HOME PAGE END */

    /* ABOUT PAGE START */
    .category_banner_img {
        height: 230px;
    }

    .breadcrumb {
        padding: 0px 15px;
    }

    .about_us {
        padding: 0px 15px;
    }

    .about_top_banner {
        height: 230px;
    }

    .about_us_item_exparience {
        margin-left: 0;
    }

    .about_item_nav {
        margin-left: 0;
    }

    .about_us_item_img_2 {
        margin-top: 30px;
    }

    .about_us_item_img {
        height: 350px;
    }

    .about_us_item_text_2 {
        margin-top: 30px;
    }

    .about_us_item_text {
        margin-left: 0px;
    }

    .about_counter ul li {
        width: 50%;
    }

    /* ABOUT PAGE END */

    /* CARRER START */
    .career_text_center {
        padding-bottom: 40px;
    }

    .pagination ul li a {
        font-size: 14px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    /* CARRER END */

    /* TEAM START */
    .team_banner_img {
        height: 250px;
    }

    .team_founders_img {
        height: 550px;
    }

    .team_founders_text {
        padding: 30px;
    }

    .team_employe .img {
        height: 450px;
    }

    /* TEAM END */

    /* FAQ START */
    .faq_accordion .accordion-button::after {
        left: -458px;
    }

    .faq_accordion .accordion-button {
        padding: 11px 12px 11px 60px;
    }

    .faq_accordion .accordion-body {
        padding: 23px 25px 32px 20px;
    }

    /* FAQ END */

    /* BLOG START */
    .single_blog_img {
        height: 330px;
    }

    /* BLOG END */

    /* CONTACT START */
    .contanct_area {
        padding: 0px 15px;
    }

    .contact_text {
        padding: 25px 30px 30px 30px;
    }

    .contact_text h2 {
        font-size: 32px;
    }

    .contact_address {
        padding: 25px 30px 25px 25px;
    }

    .contact_address_map {
        height: 250px;
    }

    /* CONTACT END */

    /* CHECKOUT START */
    .checkout {
        padding: 0px 15px;
    }

    /* CHECKOUT END */

    /* CART START */
    .shoping_cart {
        padding: 0px 15px;
    }

    .checkout_order_summery {
        margin-top: 30px;
    }

    /* CART END */

    /* TEAM DETAILS START */
    .team_details_img {
        height: 530px;
    }

    .team_description {
        margin-left: 0;
        margin-top: 30px;
    }

    /* TEAM DETAILS END */

    /* BLOG DETAILS START */
    .blog_details_img {
        height: 250px;
    }

    .blog_details_text h2 {
        font-size: 28px;
    }

    .blog_details_text .details_center_img {
        height: 200px;
    }

    .single_blog_det_review .text {
        width: 78%;
    }

    .single_blog_det_review.reply .text {
        width: 76%;
    }

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

    /* BLOG DETAILS END */

    /* RETURN POLICY START */
    .return_policy_contant .nav-pills li {
        width: 100%;
    }

    /* RETURN POLICY END */

    /* BE_FRANTHISE START */
    .be_franthise_item {
        margin-bottom: 25px;
    }

    /* BE_FRANTHISE END */

    /* ORDER SUCCESS START */
    .order_success_header p {
        font-size: 28px;
    }

    .order_success_list table tr .details a {
        font-size: 18px;
    }

    /* ORDER SUCCESS END */

    /* CATEGORY START */
    .category_page_item .img {
        height: auto;
    }

    .category_page_item {
        width: 100%;
    }

    .category_product .single_product_img {
        height: auto;
    }

    /* CATEGORY END */

    /* PRODUCT START */
    .product_page {
        padding: 0px 15px;
    }

    .single_product_img {
        height: auto;
    }

    .product_sidebar {
        margin-top: 25px;
    }

    /* PRODUCT END */

    /* PRODUCT DETAILS START */
    .product_details_page {
        padding: 0px 15px;
    }


    .product_details_thumb {
        height: auto;
    }

    .product_details_content .details_heading {
        font-size: 30px;
    }

    .product_details_content {
        margin-top: 40px;
    }

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

    .details_color ul li {
        width: 60px;
        height: 60px;
    }

    .details_payment .details_payment_item {
        height: 50px;
    }

    .details_img {
        height: 260px;
    }

    .product_description_area {
        margin-bottom: 50px;
    }

    .related_product .single_product_img {
        height: auto;
    }

    /* PRODUCT DETAILS END */

    /* DASHBOARD START */
    .dashboard_right_heading .common_btn {
        margin-top: 20px;
    }

    .dashboard_sidebar {
        margin-bottom: 30px;
    }

    .order_tracking_line li::after {
        display: none;
    }

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

    .order_product_details {
        padding: 10px 10px 10px 10px;
        text-align: center;
    }

    .order_product_details_left {
        width: 100%;
    }

    .order_product_details_left .img_text {
        width: 100%;
        margin-left: 0;
    }

    .order_product_details .text {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .order_product_details_left .img {
        margin: auto;
        margin-bottom: 10px;
    }

    /* DASHBOARD END */
    .banner {
        height: auto;
        margin-top: 80px;
    }

    .banner .banner_slider_item {
        padding: 0px 25px 25px 25px;
    }

    .banner .banner_slider_item a {
        height: 260px;
        overflow: hidden;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .categories_text a,
    .favourite_product_text a,
    .single_product_banner_text a {
        font-size: 18px;
    }

    .category_img p {
        padding: 20px;
    }

    .add_banner_item .text {
        /* align-items: center; */
        padding-right: 0;
    }

    .add_banner_item .text {
        padding-right: 50px;
    }

    .banner #my_video {
        height: auto;
    }

    .banner .banner_slider_item {
        height: auto;
    }

    .banner_call {
        display: none;
    }

    .product_details_small {
        height: auto;
    }

    .details_payment .details_payment_slider_area {
        max-width: 340px;
    }

    .details_emi_modal .bank_name {
        width: 100%;
    }

    .details_emi_modal .emi_tabs_area .tab-content {
        margin-left: 0;
    }

    .details_emi_modal .modal-body table thead tr th,
    .details_emi_modal .modal-body table tbody tr td {
        min-width: auto;
    }

    .details_emi_modal .btn-close {
        top: -5px;
        right: -5px;
    }

    .details_emi_modal .modal-dialog {
        max-width: 550px;
    }

    .flash_sell {
        padding: 0px 15px;
    }

    .flas_sell_page .flash_count_down {
        width: 340px;
    }

    .flas_sell_page .simply-countdown {
        margin-top: 10px;
    }

    .flash_sell_heading_banner .simply-countdown {
        right: 20px;
    }

    .flash_sell_heading_banner .simply-amount::after {
        top: -9px;
        right: -27px;
    }

    .flash_sell_heading_banner .simply-minutes-section .simply-amount::after {
        right: -23px;
    }

    .flash_sell_heading_banner .simply-section {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }

}

@media (max-width: 575.99px) {

    /* HOME PAGE START */
    .main_menu {
        padding: 0 10px;
        background: #F3EDED !important;
    }

    .main_menu .container-fluid {
        padding: 0;
    }

    .main_menu .navbar-collapse {
        display: none;
    }

    .main_menu .navbar-brand {
        width: 98px;
    }

    .categories_text {
        text-align: left;
        padding-right: 0;
    }

    .section_heading {
        font-size: 20px;
        margin: 0 !important;
    }

    .categories_text p {
        text-align: left;
        font-size: 16px;
        margin-top: 0;
    }

    .categories,
    .category_3,
    .favourite_product,
    .single_product_banner,
    .showcase,
    .testimonial,
    .brand {
        padding: 0px 15px;
    }

    .category_img {
        height: auto;
    }

    .add_banner_item .text h5 {
        font-size: 16px;
    }

    .favourite_product_item .img {
        height: auto;
    }

    .category_3_large_item {
        height: auto;
    }

    .category_3_small_item {
        height: auto;
    }

    .single_product_banner_text {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .single_product_banner_text h2 {
        text-align: center;
    }

    .single_product_banner_text p {
        text-align: center;
        font-size: 20px;
        padding-left: 0;
    }

    .single_product_thumb {
        height: auto;
        padding: 0;
    }

    .single_product_small .img {
        height: auto;
    }

    .showcase_small_item {
        height: auto;
    }

    .showcase_large_item {
        height: auto;
    }

    .single_testimonial .text ul li:first-child {
        border-right: 0;
    }

    .single_testimonial .text ul li span {
        margin-top: 15px;
    }

    .brand_area li {
        width: 45%;
        height: auto;
    }

    .imei_img {
        height: auto;
    }

    .founder_testimonial_img {
        height: auto;
    }

    .footer_logo_area .footer_logo {
        width: 135px;
    }

    footer {
        padding: 50px 15px 30px 15px;
    }

    .footer_logo_area ul li a,
    .footer_logo_area ul li p {
        max-width: 100%;
    }

    .footer_link,
    .footer_facebook {
        margin-top: 50px;
    }

    .progress-wrap {
        right: 20px;
    }

    .single_testimonial {
        padding: 20px;
    }

    .single_testimonial .text {
        width: 100%;
    }

    .add_banner_item {
        height: auto;
    }

    .payment_logo {
        margin-top: 5px;
    }




    .single_product_small .text a {
        font-size: 14px;
    }

    .single_product_small .text p {
        font-size: 12px;
    }

}





/* search */

 /* Search Result List */
 .list-wrap {
  width: calc(100% + 2rem);       /* match dropdown padding (p-3 = 1rem left + right) */
  margin-left: -1rem;             /* compensate left shift */
  max-height: calc(50vh + 2rem);  /* match dropdown padding (top + bottom) */
  margin-top: 0.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Scrollbar Styling */
.list-wrap::-webkit-scrollbar {
  width: 6px;
}
.list-wrap::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f1f1f1;
}
.list-wrap::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #b5bac2;
}

/* List Items */
.list-item {
  font-size: 0.95em;
  padding: 0.6em 0.5em;
  border-top: 1px solid #eee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}
.list-item:first-child {
  border-top: none;
}
.list-item:hover {
  background: #f6f6f6;
}

/* Link inside item */
.list-item-link {
  color: #444;
  text-decoration: none;
  display: block;
}

/* Subtext for additional info */
.item-list-subtext {
  font-size: 85%;
  color: grey;
}
.item-list-subtext::before {
  content: " (";
}
.item-list-subtext::after {
  content: ")";
}

/* Disabled state */
.list-item--disable {
  text-align: center;
  color: #9da1b1;
  animation: shake 0.6s;
  pointer-events: none;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}
