      .cart-item__product-drawer {
        /* display: flex;
        align-items: center; */
        /* padding-bottom: 24px; */
        /* padding: 12px 15px; */
        /* border-top: 1px solid #ddd; */
        padding: 24px 24px 0 24px;
      }
      /* .cart-item__picture {
        flex: 0 0 80px;
        margin-right: 15px;
      } */
      
      .cart-item__picture img {
        width: 80px;
        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: 400;
        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: 1rem;
      }
      
      .cart-item__quantity-wrapper a {
        font-size: 14px;
        color: #000;
        text-decoration: none;
      }
.cart-drawer-title-mobile{
  display: none;
}

.cart-item__small-parcel {
  margin-bottom: 4px;
  cursor: default;
  font-size: 10px;
}

.cart-item__small-parcel .cart-item__small-parcel-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #c60000;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
  pointer-events: none;
}

.cart-item__small-parcel .cart-item__small-parcel-label img {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

@media screen and (max-width: 959px) {
  .cart-item__picture .cart-drawer-title-mobile{
    display: block;
  }
  .cart-drawer-title-PC{
  display: none;
  }
}
