#cmc-mini-cart {
    background: #F6F5F5;
    padding: 10px;
    max-width: 400px;
  }

  .product-thumbnail img {
    width: 40px;
    height: auto;
  }
  .product-details {
    flex: 1;
    margin-left: 10px;
  }
  .product-details a {
    display: block;
    font-weight: bold;
  }
  .product-details .quantity {
    width: 60px;
    margin-top: 5px;
  }
  .line-total {
    font-weight: bold;
    margin-top: 5px;
    display: block;
  }
  
  .custom-cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .cart-label {
    font-size: 16px;
  }
  
  .cart-total {
    font-size: 16px;
  }
  
  

/*Remove products*/

  .mini-cart-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ACACAC;
  }
  
  .product-thumbnail {
    flex-shrink: 0;
    margin-right: 10px;
  }
  
  .product-details {
    flex-grow: 1;
    position: relative;
    padding-right: 40px; 
  }
  
  .product-details a {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .remove-item {
    position: absolute;
    top: 0; 
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px; 
    height: 24px;
  }
  
  .remove-item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  
  .custom-cart-actions.disabled {
    pointer-events: none;
    opacity: .5;
    cursor: not-allowed;
  }
  