
  
.cart-box {
    display: flex;
    width: 100%;
    padding: 15px;
  }
  .cart-left-content {
    flex: 0 0 60%;
    display: flex;
    align-items: stretch;
    max-height: 150px;
    overflow: hidden;
  }
  .cart-left-content img {
    height: 100%;
    width: auto;
    max-width: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
  }
  .icon-section {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
  }
  .collapse-arrow {
    cursor: pointer;
    user-select: none;
  }
  .collapsed .arrow::before {
    content: "▼";
  }
  .expanded .arrow::before {
    content: "▲";
  }
  .quantity-changer {
    width: 120px;
    background-color: #ffc107;
    border-radius: 8px;
    overflow: hidden;
  }
  .quantity-changer span {
    background-color: white;
    color: black;
    padding: 6px 12px;
    border-radius: 0;
    font-weight: bold;
  }
  .quantity-changer button {
    background: transparent;
    border: none;
    color: black;
    font-weight: bold;
  }
  .prod-id {
    color: gray;
    font-size: 14px;
  }
  .green-dot {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
  }

  /* Border styles for each cart-box-wrapper */
  .border-top-black {
    border-top: 2px solid black;
  }
  .border-bottom-yellow {
    border-bottom: 2px solid #ffc107;
  }
  .border-bottom-gray {
    border-bottom: 2px solid #ccc;
  }


  .toggle-faq {
    cursor: pointer;
    user-select: none;
  }
  .faq-arrow {
    font-weight: bold;
    font-size: 20px;
  }



  @media (max-width: 768px) {
    .cart-box {
      flex-direction: column;
      padding: 10px;
    }
  
    .cart-left-content {
      flex: 1 1 100%;
      max-height: none;
      margin-bottom: 10px;
    }
  
    .cart-left-content img {
      width: 80px;
      height: auto;
      margin-right: 10px;
    }
  
    .cart-left-content > div {
      flex: 1;
    }
  
    .cart-left-content h6 {
      font-size: 16px;
    }
  
    .cart-left-content .prod-id {
      font-size: 13px;
    }
  
    .cart-left-content .text-success,
    .cart-left-content .text-muted {
      font-size: 13px;
    }
  
    .cart-box .d-flex.flex-grow-1 {
      flex-direction: column;
      width: 100%;
    }
  
    .cart-box .w-50 {
      width: 100% !important;
      padding-top: 5px;
    }
  
    .quantity-changer {
      width: 100%;
      max-width: 120px;
      margin: auto;
    }
  
    .pe-3 {
      padding-right: 0 !important;
      margin-top: 10px;
    }
  
    .cart-box-wrapper {
      padding: 10px 0;
    }
  
    .cart-box-wrapper .d-flex.align-items-center.mt-1 {
      font-size: 13px;
    }
  
    .text-start, .text-end {
      font-size: 13px;
    }
  

  
    .icon-section {
      flex-direction: row;
      justify-content: space-around;
      padding: 15px 0;
      border: none;
    }
  
    .icon-section i {
      font-size: 28px;
      margin-bottom: 5px;
    }
  
    .icon-section .small {
      font-size: 13px;
    }
  }
  
  @media (max-width: 768px) {
    .btn-warning.fw-bold {
      width: auto;
      margin-top: 10px;
      padding: 12px;
      font-size: 16px;
    }

    .cart-left-content h6 {
      font-size: 16px;
      width:80%;
    }
  }

  @media (min-width:768px){
      .c-dustbin{
      position: absolute; 
    }
  }


  /* CSS */
.responsive-pay-btn {
  width: auto;
}

@media (max-width: 768px) {
  .responsive-pay-btn {
    width: 100%;
  }
}

  
