   /* -----------------header page css start------------------ */
   /* -----------header------------ */
   
   .header_navbar {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_navbar a {
        float: left;
        font-size: 16px;
        color: var(--default-color);
        text-align: center;
        padding: 14px 8px;
        text-decoration: none;
        position: relative;
    }
     /* .header_navbar a:hover, */
   .header_navbar .heade_dropdown .dropbtn .active1::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        bottom: -10px;
        background-color: var(--active-color);
        transform: scale(1, 1);
    }

    .heade_dropdown {
        float: left;
        overflow: hidden;           
    }
    .header_title{
        text-transform: capitalize;
    }
    .heade_dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 10px 8px;
        background-color: inherit;
        font: inherit;
        margin: 0;
    }

     .header_navbar .heade_dropdown .dropbtn a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        bottom: -10px;
        background-color: var(--active-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }

    .header_navbar .heade_dropdown .dropbtn a:hover::before {
        transform: scale(1, 1);
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 99;
    }


    .heade_dropdown:hover .dropdown-content {
        display: block;
    }

    /* Create three equal columns that floats next to each other */
    .header_row{
         padding: 15px;
        background-color: #fff;
    }
   
    .column a {
        float: none;
        color: var(--default-color);
        padding:9px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
        .column {  
            border-right: 1px solid rgb(201, 197, 197);
        }
         .column:last-child {
                   border-right: none;
        }
    .column a:hover {
        background-color: #ebeaeaee;
    }

    /* Clear floats after the columns */
    .header_row:after {
        content: "";
        display: table;
        clear: both;
    }
  /* ---------sleder- end-------------- */

        
    /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 600px) {
        .column {
            width: 100%;
            height: auto;
            /* border-right: 1px solid gray; */
        }
       
    }
    ul li {
        list-style: none;
    }

    a {
        text-decoration: none;
    }
    .bar_container {
        display: inline-block;
        cursor: pointer;
      }

    .bar2 {
        width: 15px;
        height: 2px;
        background-color: var(--default-color);
        margin: 7px 0;
        transition: 0.4s;
        border-radius: 5px;
    }

     .bar1{
        width: 25px;
        height: 2px;
        background-color: var(--default-color);
        margin: 7px 0;
        transition: 0.4s;
        border-radius: 5px;
   }    
     .bar3 {
        width: 25px;
        height: 2px;
        background-color: var(--default-color);
        transition: 0.4s;
        border-radius: 5px;
   }

    .acount_btn {
        width: 230px;
        background-color: #fff;
        display: none;
        position: absolute;
        right: 0;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: 1s;
    }

    .account_menus:hover .acount_btn {
        display: block;
    }

    .account_menus {
        position: relative;
        display: block;       
    }

     .right_menu_color {
        color: var(--default-color);
        cursor: pointer;
        font-size: 16px;
    }
 .user_name{
        background-color:var(--default-color);
        color:#fff;
    }
    .user_name:hover{
        background-color:var(--active-color);
        color:#fff;
    }
    .acount_icon{
         color: var(--default-color); 
    }
    .acount_icon:hover{
         color: var(--active-color); 
    }
     .menu_color {
        color: #fff;
    }
    .cart_wish a{
        color: #fff;
        font-size: 14px;
    }
    .cart_wish a:hover{
        color: var(--active-color);
    }

    .d_header {
        background: #fff;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .modal .modal-content {
        border-radius: 0px;
        border-width: 0px;
    }

    .modal .search-dialog {
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .count_color{
        color:var(--active-color);
    }
    .cart_wish a:hover .count_color{
        color:#fff;
    }
    .mob-menu-color li a{
        color:var(--default-color);
    }

   /* -----------------header page css end------------------ */
   /* -----------------index page css start------------------ */
   .main-heading h2{
    font-weight: 400 !important;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 8px;
    text-transform: capitalize;
    color:var(--default-color);
}
.headding-image img{
    width: 100px;
}

  .main-heading p{
        color:var(--default-color);
    }
    .headding-line{
       position: relative;
       margin-top: 20px;
   }
 
    .headding-image::before {
            content: '';
            background-color: var(--default-color);
            width: 100%;
            height: 1px;
            position: absolute;
            right: 0;
            top: 0;
        }
       .main-heading .headding-image img{
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);        
        }
  
         .all-headings{
            color: var(--default-color);
            font-weight: 300 !important;
        }
        .all-contents{
            font-size: 16px;
            color: var(--default-color);
        }
    @media screen and (max-width: 480px) {
        .main-heading h2 {
            font-size: 24px;
            padding-bottom: 0px;
        }
        .main-heading p{
                font-size: 14px;
            }
            .headding-image img{
            width: 60px;
        }
            .headding-line {
            margin-top: -1px;
            }

        .main-heading .headding-image img {
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
        }
        .all-headings{
            font-size: 20px;
            font-weight: 300 !important;
        }
        .all-contents{
            font-size: 14px;
        }
    }

    
  
          .explore_btn {
              background-color: var(--default-color);
          }
          .product_title{
           color: var(--default-color);
          }
          .explore_arrow {
              color: #fff;
          }

          .explore_btn:hover .explore_arrow {
              transform: translateX(8px);
              transition: 0.6s;
          }

         /* CSS for the slider */
        .slider-container-wrapper {
            position: relative;
        }

        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
         .slider-item a{
            color: var(--default-color);
         }
        .slider-item {
           background: linear-gradient(90deg, rgba(222,193,128,1) 1%, rgba(238,215,183,1) 100%);
            flex: 0 0 auto;
            width: 300px;
            /* Adjust as needed */
            margin-right: 20px;
            border: 1px solid #f3efef;
            border-radius: 8px;
            overflow: hidden;
        }

        .slider-container-wrapper .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: var(--default-color);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            width: 40px;
            height: 40px;
            border: none;
            cursor: pointer;
            z-index: 99;
            border-radius: 50%;
            font-size: 17px;
        }

        .slider-container-wrapper .prev-button {
            left: 0px;

        }

        .slider-container-wrapper .next-button {
            right: 0px;
        }
        .sbc_content{
        background: linear-gradient(90deg, rgba(222,193,128,1) 1%, rgba(238,215,183,1) 100%);
       }
       .sbc-card:hover .sbc_wapper{
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
       }

          img {
              width: 100%;
          }


          /* Image-container design */
          .image-container {
              max-width: 100%;
              position: relative;
              margin: auto;
              z-index: 0;
          }

          .next {
              right: 0;
          }

          /* Next and previous icon design */
          .previous,
          .next {
              cursor: pointer;
              position: absolute;
              top: 50%;
              /* background-color: red; */
              padding: 10px;
              margin-top: -25px;
              z-index: 1;
          }

          /* caption decorate */
          .captionText {
              color: var(--default-color);
              font-size: 14px;
              position: absolute;
              padding: 12px 12px;
              bottom: 8px;
              width: 100%;
              text-align: center;
          }

          /* Slider image number */
          .slideNumber {
              background-color: #858585;
              color: white;
              border-radius: 25px;
              right: 0;
              opacity: .5;
              margin: 5px;
              width: 30px;
              height: 30px;
              text-align: center;
              font-weight: bold;
              font-size: 20px;
              position: absolute;
          }

          .fa {
              font-size: 36px;
              color: var(--default-color);
          }

          .fa:hover {
              transform: rotate(360deg);
              transition: 1s;
              color: rgb(214, 211, 211);
          }

          .footerdot {
              cursor: pointer;
              height: 10px;
              width: 10px;
              margin: 0 2px;
              background-color: #bbbbbb;
              border-radius: 50%;
              display: inline-block;
              transition: background-color 0.5s ease;
          }

          .footerdot.active,
          .footerdot:hover {
              background-color: var(--default-color);
          }

             /* ..............testmonial. start.......... */
        #testimonial_wrapper {
            width: 90%;
            margin: auto;
            position: relative;
        }
        .testimonial{
            color: var(--default-color);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
        #next-testimonial {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: var(--default-color);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            width: 40px;
            height: 40px;
            border: none;
            cursor: pointer;
            z-index: 99;
            border-radius: 50%;
            font-size: 17px;
            left: 0px;
        }

        #prev-testimonial {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: var(--default-color);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            width: 40px;
            height: 40px;
            border: none;
            cursor: pointer;
            z-index: 99;
            border-radius: 50%;
            font-size: 17px;
            right: 0px;
        }
        .owl-dots .owl-dot.active{
            background-color: var(--default-color) !important;
            
        }
        #testimonial_wrapper .owl-dots{
            display: flex;
             position: absolute;
            left: 50%;
            bottom: -20px;
            transform: translateY(-50%);            
        }
        /* ..............testmonial. end.......... */
       /* -----------------index page css end------------------ */


       /* -----------------wishlist and cart page css start------------------ */
           .wishline {
            position: relative;
        }

        .wishline::before {
            content: '';
            background-color: var(--default-color);
            width: 100%;
            height: 1px;
            position: absolute;
            right: 0;
            top: 0;
        }

        .wishtag {
            position: absolute;
            top: -18px;
            left: 50%;
            border: 1px solid var(--default-color);
            padding: 4px 30px;
            transform: translateX(-50%);
            background-color: var(--default-color);
        }
       /* -----------------wishlist and cart page css end------------------ */
       /* -----------------product page css start------------------ */
          .product_wishlist{
            left:2px;
            top:2px;
            font-size:28px;
            z-index:2;
            color:var(--default-color)
          }
        .details {
            display: none;
            transition-delay: 9s;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            transition: all 6s ease-out;
            transition-duration: 2s;
        }

        .product:hover .details {
            display: block;
        }

        #next:hover .fa-angle-left,
        #prev:hover .fa-angle-right {
            transform: rotate(360deg);
            transition: 1s;
        }

     
       .dropdown .btn-secondary {
            color: #fff;
            background-color:var(--default-color);
            border-color: var(--default-color);
        }

        .ft-toolbar {
            position: fixed;
            width: 100%;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 9;                                                                                                                                                                                                                                                                                                                                                                        overflow-y: hidden; */
            -webkit-overflow-scrolling: touch;
            padding: 5px;      
            background-color: #fff;
            box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2), 0 10px 20px 0 rgba(0, 0, 0, 0.19);
        }

        /* ----------------accrdian css------------- */
        .accordion-title:before {
            float: right !important;
            font-family: FontAwesome;
            content: "\f068";
            padding-right: 5px;
        }

        .accordion-title.collapsed:before {
            float: right !important;
            content: "\f067";
        }

        .card-header {
            background-color: #fff;
            border-bottom: 1px solid #d6c3c3;
        }

        .card {
            border: none;
        }

        .collapseborder {
            border-bottom: 1px solid #d6c3c3;
        }

        .form-check-input:checked {
            background-color: var(--default-color);
            border-color: var(--default-color);
        }

        .form-check label,
        .form-check-input {
            cursor: pointer;
        }

       .modal .modal-sort-filter {
            position: fixed;
            bottom: 0;
            left: 0%;
            right: 0%;
            transform: translate(-50%, -50%);
        }
         .remove-btn {
            font-size: 12px;
            color: var(--default-color);
            text-transform: capitalize;
        }

        .remove-btn span {
            font-size: 12px;
            padding-left: 4px;
            color: red;
        }

       /* -----------------product page css end------------------ */
       /* -----------------single page css start------------------ */
          /* ------------review css------- */
        .rating {
            padding-bottom: 30px;
        }

        .rating label {
            float: right;
            position: relative;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }

        .rating label:not(:first-of-type) {
            padding-right: 2px;
        }

        .rating label:before {
            content: "\2605";
            font-size: 42px;
            color: #ccc;
            line-height: 1;
        }

        .rating input {
            display: none;
        }

        .rating input:checked~label:before,
        .rating:not(:checked)>label:hover:before,
        .rating:not(:checked)>label:hover~label:before {
            color: var(--default-color);
        }

          /* -----------exzoom css---------- */
        #exzoom {
            width: auto;
        }

        .product_list_ul {
            position: relative;
        }

        .product_list_ul .bvideo-wrap {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transform: translate3d(0px, 0px, 0px);
            width: 100%;
            height: 100%;
        }

        .product_list_ul:hover .bvideo-wrap {
            display: block;
        }

        #share-buttons {
            display: none;
        }

        .shares .share-btn {
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 40px;
            border-radius: 50px;
            font-size: 20px;
            background-color: var(--default-color);
            color: #fff;
            margin: 4px;
            cursor: pointer;
        }



        .fa-thumbs-down {
            transform: rotateY(180deg);
        }

        .zoom_btn {
            height: 30px;
            width: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 50px;
        }

        .zoom_btn:hover {
            background-color: #ccc;
            z-index: 9;
        }
       /* -----------------single page css end------------------ */
       /* -----------------Footer page css start------------------ */
         .container-1 {
        width: 90%;
        margin: auto;
    }

    .line-footer li {
        list-style: none;
    }

    .line-footer li a:hover {
        color:  var(--active-color);
        font-style: italic;
    }

    .line-footer li a {
        position: relative;
        text-decoration: none;
        color: var(--default-color);

    }

    .line-footer li a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: -5px;
        background-color:var(--default-color);

        transform: scale(0, 1);
        transition: transform 0.7s ease;
    }

    .line-footer li a:hover::after {
        transform: scale(1, 1);
    }


    .line-footer {
        padding-left: 0;
    }
       /* -----------------Footer page css end------------------ */

        /* -----------------checkout page css ------------------ */
        .addressInput {
            padding: 10px;
            margin: 15px 0;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #bcc4d4;
            color: var(--default-color);
        }

        .demo input[type=text] {
            display: inline-block;
            padding: 10px;
            margin: 5px 0;
            width: 49.6%;
            box-sizing: border-box;
            border: 1px solid var(--default-color);
        }

        .demo input[type=password] {
            display: inline-block;
            padding: 10px;
            margin: 5px 0;
            width: 49.6%;
            box-sizing: border-box;
            border: 1px solid var(--default-color);
        }


        .button1 {
            background-color: var(--default-color);
            border: none;
            color: white;
            margin-top: 5px;
            padding: 10px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
        }

        .paycent {
            width: 100%;
            height: auto;
            overflow: hidden;
            text-align: center;
            border: 1px solid #dce0e9;
            padding: 20px;
        }

        .paypalimg {
            width: 80px;
        }

        .paydiv {
            background-color: var(--default-color);
            color: #fff;
            padding: 5px;
            text-align: center;
            width: 100%;
        }

        .table td {
            padding: 3px 5px;
            font-size: 14px;
        }

         /* Style the tab */
        .payment_tab {
            /* float: left; */
            border: 1px solid #ccc;
            background-color: #f1f1f1;
            /* width: 30%; */
            height: 180px;
        }

        /* Style the buttons inside the payment_tab */
        .payment_tab button {
            display: block;
            background-color: inherit;
            color: black;
            padding: 15px 10px;
            /* width: 100%; */
            border: none;
            outline: none;
            text-align: left;
            cursor: pointer;
            transition: 0.3s;
            font-size: 17px;
        }

        /* Change background color of buttons on hover */
        .payment_tab button:hover {
            background-color: #b8d7df;
        }

        /* Create an active/current "payment_tab button" class */
        .payment_tab button.pay_active {
            background-color: #b0bdda;
            border-right: 5px solid var(--default-color);
        }

        /* Style the tab content */
        .tabcontent {
            /* float: left; */
            padding: 10px 12px;
            border: 1px solid #ccc;
            width: 70%;
            border-left: none;
            height: 180px;
        }
        .tabcontent p{
            font-size: 14px;
        }

        @media (max-width: 991px) {
            .tabcontent {
                border: 1px solid #ccc;
            }
            .payment_tab {
            height: 120px;
        }
        }