



  




#cart__badge__qty{
    width: 0.9rem;
    height: 0.9rem;
    position: absolute;
    top: 0;
    right: 0;

    background: var(--action);
    color: white;
    text-align: center;
    padding: .25rem;
    font-size: 12px;
    border-radius: 50%;
    display: block;
}










#shopping__cart__icon{
    background-image: url('../assets/svg/cart.svg'); /* Replace 'path_to_your_image.jpg' with the path to your image */
    background-size: cover; /* Adjust the background size */
    background-position: center; /* Adjust the background position */
}

#bar__cart__icon{
        background-image: url('../assets/svg/bar.svg'); /* Replace 'path_to_your_image.jpg' with the path to your image */
        background-size: cover; /* Adjust the background size */
        background-position: center; /* Adjust the background position */
}






/*=========================================================
	03 -> Navigation
===========================================================*/





  #link__section{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
  }


















  

/*Cart Dropdown*/
/*---------------------------------------START*/

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
    border: solid 1px lightgray;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, 0.1); 


    z-index: 200;
  }
  
  .dropdown.open>.cart-dropdown {
    opacity: 1;
    visibility: visible;
  }
  
  .cart-dropdown .cart-list {
    max-height: 300px;
    overflow-y: scroll;
  }
  
  .cart-dropdown .cart-list .product-widget {
    padding: .5rem;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0px;
  }
  
  .cart-dropdown .cart-list .product-widget .product-img {
    width: 4rem;
    height: 4rem;
  }
  
  .cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2B2D42;
  }
  
  
  .cart-dropdown .cart-btns>a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: var(--action);
    color: #FFF;
    text-align: center;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  
  .cart-dropdown .cart-btns>a:hover {
    opacity: 0.9;
  }
  
  .cart-dropdown .cart-summary {
    padding: .5rem;
  }
  
  


  .product-widget {
    display: grid;
    grid-template-columns: auto 1fr;
    border-bottom: solid 1px lightgray;
  }



.product-widget .product-img {
    width: 60px;
    height: 60px;
    border: solid lightgray 1px;
    border-radius: .25rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center !important;
  
}
  
  .product-widget .product-img>img {
    width: 100%;
  }

  .product-body{
    display: grid;
    gap: .5rem;
    padding: .5rem;
  }




  /*---------------------------------------END*/




  
/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: .5rem !important;
    margin-top: calc(.5rem - 1px);

  }
  
  .header-search form {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
    position: relative;
  }
  
  .header-search form .input-select {
    margin-right: -4px;
    border-radius: 1.5rem;
    height: 3rem;
    padding: .25rem 1rem .25rem 1rem;
  }
  
  .header-search form .input {
    width: 100%;
    height: 3rem;
    border-radius: 1.5rem;
    padding-right: 3rem;
    outline:none;

  }

  
  .header-search form .search-btn {
    height: 2rem;
    width: 2rem;
    background: var(--action);  /* fallback for old browsers */
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: 50%;
    background-image: url('../assets/svg/search.svg'); /* Replace 'path_to_your_image.jpg' with the path to your image */
    background-size: cover; /* Adjust the background size */
    background-position: center; /* Adjust the background position */

    position: absolute;
    top: .5rem;
    right: .5rem;

  }



  
#header {
  }


  
/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    background-color: #f5f2ef;
    padding-top: .5rem;
    padding-bottom: .5rem;;
  }
  
  .header-links li {
    display: inline-block;
    margin-left: .5rem;
    font-size: 14px;
  }
  
  .header-links li:last-child {
    margin-right: 0px;
  }
  
  
  .header-links li i {
    color: black;
    margin-left: .5rem;
  }


  .header-links li a {
    color: black;
  }
  
  .header-links li a:hover {
    color: var(--action);
  }

  



  
.dropdownn {
    position: relative;
    display: inline-block;
    z-index: 100;
}

.dropdownn-content {
    display: none;
    position: absolute;

    border: solid 1px var(--background-300);
    min-width: 160px;
    box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, 0.1); 
    z-index: 102;
    border-radius: .5rem;
    overflow: hidden;

    background-color: var(--background-200);
    color: var(--font-200);
}

.dropdownn-content a {
    color: var(--font-200);
    padding: .5rem 1rem .5rem 1rem;
    text-decoration: none;
    display: block;
    width: calc(100% - 3rem);
    margin: .5rem;
    text-align: center;
    border-radius: .25rem;
    background-color: var(--background-300);
}

.dropdownn-content > a > i{
    margin-right: .5rem;
}

.dropdownn-content a:hover{
    background-color: var(--action);
}

.dropdownn-content a:hover > i{
    color: white;
}
.dropdownn-content a:hover{
    color: white !important;
}




.dropdownn:hover .dropdownn-content {
    display: block;

}













.main-raised {

    margin-bottom: 1rem;
    border-radius: .5rem;
    box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, 0.1); 

}
.main {

    background: #fff;
    position: relative;
    z-index: 3;
    width: 100%;
}








#product-imgs .product-preview {
    border-radius: .25rem;
    overflow: hidden;
  }
  
  #product-imgs .product-preview.slick-current {

  }

  .slick-arrow{
    border: solid lightgray 1px;
  }

  .slick-arrow:hover{
    background-color: var(--action);
    color: white;
    border: solid var(--action) 1px;
  }


  .slick-active > button::before{
    background-color: var(--action) !important;
    border-radius: 50%;

  }







  .product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--action);
    margin-bottom: .5rem;
    display: block;
  }
  
  
  .product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;


  }

  .product-options{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-options-layout{
    display: grid;
    grid-template-columns: .5fr 1fr;
    grid-template-rows: auto;
    align-items: center;
    width: 100%;
    height: fit-content;
  }

  .product-options-specs{
    border: solid 1px lightgray;
    padding: .5rem;
    border-radius: .25rem;
    text-align: center;
  }


  .product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: var(--action);
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }


  .product-details .add-to-cart .no-add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: gray;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  .product-details .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: var(--action);;
    opacity: 0;
    visibility: hidden;
  }












.shoping_cart_card{
  background-color: var(--background-200);
  border: solid 1px var(--background-300);

  color: var(--font-300);


  border-radius: .25rem;
  overflow: hidden;
  padding: .5rem;
  margin-bottom: .5rem;

  display: grid;
  grid-template-columns: auto 1fr;

}



#cart_checkout{
  display: grid;
  grid-template-rows: auto;
  border-radius: .5rem;
  padding: .5rem;
}

.cart-product-image{
  width: 5rem;
  height: 5rem;
  border-radius: .25rem;
  width: auto;
}

.cart-card-info{
padding-left: 1rem;
}





.image-quantity-layout{
  display: grid;
  grid-template-rows: auto;

}


.product-quantity_layout{
  width: 4rem;
  margin: .5rem;
}

.quantity-text{
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.quantity-input{
  text-align: center;
  width: 100%;
  padding: 1rem;
  border: solid lightgray 1px;
  border-radius: .25rem;
}

.update{
  height: 2rem;
  width: 5rem;
  background-color: var(--action);
  border-radius: .25rem;
}

.cart-card-button-group{
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
  width: 100%;
  justify-content: right;
  align-items: center;
}

.cart-card-info-text{
  padding: .5rem;
}

.net_total{
  background-color: white;
  padding: 1rem;
  font-size: large;
  border-radius: .25rem;
  margin: 1rem;

}