.cart-item__product-drawer {
        /* display: flex;
        align-items: center; */
        padding: 12px 15px;
        border-top: 1px solid #ddd;
      }
      .cart-item__picture {
        flex: 0 0 80px;
        margin-right: 15px;
      }
      
      .cart-item__picture img {
        width: 60px;
        object-fit: cover;
      }
      
      .cart-item__product-infos {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
      }
      
      .cart-item__product-infos-text {
        flex: 1;
      }
      
      .cart-item__title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 8px;
      }
      
      .cart-item__title a {
        text-decoration: none;
        color: #000;
      }
      
      .cart-item__quantity-and-actions {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      
      .cart-item__total {
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
      }
      
      .cart-item__property,
      .cart-item__option,
      .cart-item__discount {
        font-size: 14px;
        color: #555;
        margin-top: 4px;
      }
      
      .cart-item__quantity-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .cart-item__quantity-wrapper input[type="number"] {
        width: 40px;
        padding: 4px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 20px;
      }
      
      .cart-item__quantity-wrapper a {
        font-size: 14px;
        color: #000;
        text-decoration: none;
      }
.cart-drawer-title-mobile{
  display: none;
}
@media screen and (max-width: 959px) {
  .cart-item__picture .cart-drawer-title-mobile{
    display: block;
  }
  .cart-drawer-title-PC{
  display: none;
  }
}