/* Cart Header */
a.link-cart#link-cart {
  margin-right: .5rem;
  padding: 2px 12px;
  position: relative;
}

a.link-cart#link-cart i.nav-cart {
  color: rgb(0, 0, 0);
  font-size: 23px;
}

a.link-cart#link-cart span {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 23px;
  height: 23px;
  line-height: 23px;
  font-size: .8rem;
  text-align: center;
  border-radius: 50%;
  background-color: #16A34A;
  color: white;
}

a.mobile-link-cart#mobile-link-cart {
  display: inline-block;
  padding: 0;
  position: relative;
}

a.mobile-link-cart#mobile-link-cart i.mobile-nav-cart {
  background-color: transparent;
  color: var(--nav-color);
  font-size: 26px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

a.mobile-link-cart#mobile-link-cart span {
  position: absolute;
  top: -5px;
  right: 0px;
  width: 23px;
  height: 23px;
  line-height: 23px;
  font-size: .8rem;
  text-align: center;
  border-radius: 50%;
  background-color: #16A34A;
  color: white;
}

/* Jumalah Produk */
.amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amount h6 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.amount .qty {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.qty button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 4px;
  width: 15%;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  font-size: 2rem;
}

.qty input {
  width: 18%;
  text-align: center;
  padding: .4rem;
  border-radius: 4px;
  border: 1px solid grey;
  outline: none;
  color: black;
}

/* Costum input Type Number */
input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"]::-moz-appearance:textfield {
  appearance: none;
}

/* Button Check Out & Cart */
.cart-checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-checkout .cart,
.cart-checkout .checkout {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  color: white;
  transition: all .3s ease-in-out;
}

.cart-checkout .cart {
  background-color: rgb(0, 199, 166);
  font-size: 1.5rem;
  border-radius: 4px 0 0 4px;
}
.cart-checkout .cart:hover {
  background-color: rgb(0, 168, 140);
}

.cart-checkout .checkout {
  background-color: #16A34A;
  font-size: .86rem;
  border-radius: 0 4px 4px 0;
}
.cart-checkout .checkout:hover {
  background-color: #fe0000;
}

/* HandPhone */
@media (max-width: 577px) {
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0);
  }

  .mobile-display-none {
    display: none;
  }

  /* Filter & Search Produk */
  .mobile-fixed-filter {
    background-color: #ffffff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 60px;
    padding: 0px 0 10px 0;
    z-index: 999;
  }

  /* Button Check Out & Cart */
  .cart-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }

  .cart-checkout .cart,
  .cart-checkout .checkout {
    border-radius: 0;
  }
}
