/* Cart Button */
#cartBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    /* background: #ff8243; */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    /* transition: all 0.3s ease; */
    /* transition: all 1s ease; */
    /* animation: bounce 1s;
    animation-iteration-count: 3; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    box-shadow: 9px 9px 12px #b2b2b3, -9px -9px 12px #ffffff;
    transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
    border: none;
  }
  #cartBtn:before {
    font-size: 2rem;
    margin-right: 0;
  }
  #cartBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  #cartBtn:active {
    transform: scale(0.95);
  }
  #cartBtn i {
    font-size: 2rem;
    color:aliceblue;
  }
  #cartBtn .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error-color);
    color: var(--white);
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  /*
  #cartBtn .cart-count.bounce {
    animation: bounce 1s !important;
    animation-iteration-count: 5 !important;
  }
  */
  .icon-addtocart:before {
    content: "\e66b";
  }
  .icon-cart:before {
    /* content: "\e671"; */
  }
  .hidden {
    display: none;
  }
  .bounce {
    /* animation: bounce 0.1s ease; */
    /* animation: bounce 1s ease; */
    animation: bounce 1s !important;
    animation-iteration-count: 5 !important;
  }

  @keyframes bounce {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }