.cart {
  max-width: 520px;
  transition: opacity 0.4s, max-height 0.4s;
  margin: auto;
  max-height: 300px;
  overflow: hidden;
}

.cart.hide-mobile {
  max-height: 0;
}

.cart h4 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 8px;
}

/* Product */

.product {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.product-image {
  filter: brightness(0.55);
}

.product-info {
  position: absolute;
  top: 0;
  color: white;
  padding: 12px;
}

.product-info h1 {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 18px;
}

.date {
  font-weight: normal;
  margin-top: 6px;
}

.location,
.price,
.qty {
  display: none;
}

.location {
  color: #8a8c8e;
  font-weight: 500;
}

.price {
  font-weight: 500;
}

.qty-button {
  height: 24px;
  width: 24px;
  background: #e8f7fd;
  border: 0;
  margin: 0 5px;
}

.qty-button.minus {
  border-radius: 4px 0px 0px 4px;
}

.qty-button.plus {
  border-radius: 0px 4px 4px 0px;
}

.qty-text {
  color: #1dafec;
  font-weight: normal;
  font-size: 16px;
}

.amount {
  font-weight: 500;
}

@media (min-width: 769px) {
  .section-cart {
    width: 45%;
    display: flex;
    flex-shrink: 0;
  }

  .cart {
    width: 360px;
    padding: 0 40px;
    box-sizing: content-box;
    max-height: none;
  }

  .cart.hide-desktop {
    opacity: 0.3;
  }

  .cart.hide-mobile {
    max-height: none;
  }

  .cart h4 {
    margin-bottom: 16px;
  }

  /* Product */

  .product {
    height: auto;
  }

  .product-image {
    filter: brightness(1);
  }

  .product-info {
    position: relative;
    padding: 0;
    color: black;
  }

  .product-info h1 {
    font-weight: 500;
    font-size: 34px;
  }

  .product-info p {
    margin-bottom: 0;
  }

  .date {
    margin-top: 16px;
  }

  .location,
  .price,
  .qty {
    display: block;
  }

  .amount,
  .price {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #f5f5f6;
  }

  .amount {
    font-size: 1.2rem;
  }
}

@media (min-width: 1400px) {
  .cart {
    padding: 0;
    margin-right: 160px;
  }
}
