.cart-widget {
  display: none;
  position: fixed;
  top: 50px;
  right: 15px;
  z-index: 1000;
}
.cart-widget.active {
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.cart-toggle {
  width: 65px!important;
  height: 65px!important;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: url('https://cdn-icons-png.flaticon.com/512/6132/6132842.png');
  background-size: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
#cart-count {
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin-top: -5px;
}
.cart-dropdown {
  margin-top: 20px;
  background: #fff;
  border-top: 1px solid #ccc;
}
.cart-dropdown h2 {
    font-size: 19px;
    font-weight: 500;
    top: 5px;
    position: absolute;
}
#cart-items {
    height: 100%;
    max-height: 300px;
    overflow-y: scroll;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 5px 0;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}
.cart-item div {
    line-height: 110%;
}
#cart-close {
    color: red;
    top: 0;
    right: 15px;
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    cursor: pointer;
}
.qty {
    background: none;
    border: none;
    color: #676d72;
    font-weight: 800;
}
.qty-count {
    background: #dedede;
    padding: 2px 5px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
}
.remove-item {
    margin-left: 10px;
    background: none;
    border: none;
} 
.remove-item img {
    height: 25px;
    width: 25px;
    margin: 0;
} 
#cart-total {
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    text-align: end;
}
.cart-widget ::-webkit-scrollbar {
  width: 8px;
}
.cart-widget ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.cart-widget ::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 4px;
  border: 2px solid #f1f1f1;
}
.cart-widget * {
  scrollbar-width: thin;
  scrollbar-color: #bdb8aa #f1f1f1;
}
#cart-submit {
    color: #fff;
    border: none;
    border-radius: 5px;
    background: red;
    font-weight: 600;
    padding: 5px 10px;
    text-transform: uppercase;
    margin: 10px auto;
    display: block;
}

.cart-note {
  font-size: 14px;
  color: #333;
  background-color: #f8f8f8;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 15px auto 0;
  text-align: left;
  line-height: 1.5;
  max-width: 480px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  word-break: break-word;
}

@media (max-width: 480px) {
  .cart-note {
    font-size: 13px;
    padding: 10px;
    max-width: 100%;
  }
}


