.header-action-icon>a {
  font-size: 30px;
  color: #333;
  line-height: 1;
  display: inline-block;
  position: relative;
  width: 1em;
}

.header-action-icon>a img {
  width: 100%;
  max-width: 25px;
  opacity: 0.8;
}

.header-action-icon>a span.pro-count {
  position: absolute;
  right: -11px;
  top: -5px;
  color: #ffffff;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  line-height: 18px;
}

.header-action-icon:hover .cart-dropdown-wrap {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown-wrap {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 99;
  width: 320px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05);
  padding: 30px 20px 27px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 4px;
  border: 1px solid #eef0ee;
}

.cart-dropdown-wrap ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-dropdown-wrap ul li:last-child {
  margin: 0 0 0px;
}

.cart-dropdown-wrap ul li .shopping-cart-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  margin-right: 20px;
}

.cart-dropdown-wrap ul li .shopping-cart-img a img {
  max-width: 100%;
}

.cart-dropdown-wrap ul li .shopping-cart-title {
  margin: 6px 0 0;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 9px;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a {
  color: #F15412;
}

.cart-dropdown-wrap ul li .shopping-cart-title h4 a:hover {
  color: #1a1a1a;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0px;
  color: #F15412;
}

.cart-dropdown-wrap ul li .shopping-cart-title h3 span {
  color: #696969;
  font-weight: 400;
  font-size: 15px;
}

.cart-dropdown-wrap ul li .shopping-cart-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100;
  -ms-flex-positive: 100;
  flex-grow: 100;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 6px 0 0;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a {
  font-size: 18px;
  color: #696969;
}

.cart-dropdown-wrap ul li .shopping-cart-delete a:hover {
  color: #333;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total {
  border-top: 2px solid #f3f3f3;
  margin: 25px 0;
  padding: 17px 0 0;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 {
  color: #9b9b9b;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total h4 span {
  font-size: 18px;
  float: right;
  color: #F15412;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  border-radius: 4px;
  line-height: 1;
  padding: 10px 20px;
  background-color: #F15412;
  font-family: "Spartan", sans-serif;
  border: 2px solid #F15412;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline {
  background-color: transparent;
  border: 2px solid #F15412;
  color: #F15412;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a.outline:hover {
  color: #ffffff;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a:hover {
  background-color: #F15412;
}

/* end cart icon */

/* burger menu */
:root{
  --bar-width:50px;
  --bar-height:8px;
  --hamburger-gap:6px;
  --foreground:#333;
  --background:white;
  --hamburger-margin:10px;
  --animation-timing:200ms ease-in-out;
  --hamburger-height:calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

@media only screen and (max-width: 768px) {
  :root{
    --bar-width:25px !important;
    --bar-height:4px !important;
    --hamburger-gap:4px !important;
    --hamburger-margin:5px !important;
    --animation-timing:200ms ease-in-out;
    --hamburger-height:calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
}

.hamburger-menu{
  --x-width:calc(var(--hamburger-height) *1.41421356237);
  display: flex;
  flex-direction: column;
  gap:var(--hamburger-gap);
  width: max-content;
  /* position: absolute;
  top: var(--hamburger-margin);
  left: var(--hamburger-margin); */
  z-index: 2;
  cursor: pointer;
}

.hamburger-menu input{
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input{
  content:"";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing),rotate var(--animation-timing),
  translate var(--animation-timing), background-color var(--animation-timing);
}

.hamburger-menu:has(input:checked)::before{
  rotate: 45deg;
  /* width: var(--x-width); */
  translate: 0 calc(var(--bar-height)/-4);
}
.hamburger-menu:has(input:checked)::after{
  rotate: -45deg;
  /* width: var(--x-width); */
  translate: 0 calc(var(--bar-height)/4);
}
.hamburger-menu input:checked{
  opacity: 0;
  width: 0;
}

.sidebar-mobile{
  transition: translate var(--animation-timing);
  transform: translate(-100%, 0);
  padding: .5rem 1rem;
  margin-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
  background-color: var(--foreground);
  color:var(--background);
  max-width: 10rem;
  min-height: 100vh;
}

/* .hamburger-menu:has(input:checked) + .sidebar-mobile{
  transform: translate(0, 0);
} */


.hamburger-menu:has(input:checked)  {
  /* margin: -2px; */
  /* --foreground:white;
  --background:#333; */
}
