.shopping-cart-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.shopping-cart-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  max-height: 150px;
  min-height: 80px;
  aspect-ratio: 1/1;
  margin-right: 45px;
  height: 10vw;
}
.shopping-cart-item-cover {
  width: auto;
  height: 100%;
  max-height: 150px;
  min-height: 80px;
  object-fit: cover;
  z-index: 2;
}

.shopping-cart-vinyl-svg {
  aspect-ratio: 1/1;
  height: 100%;
  max-height: 150px;
  min-height: 80px;
  left: 40px;
  z-index: 1;
  position: absolute;
}
.shopping-cart-remove-btn {
  background: none;
  border: none;
  color: #e74c3c;
  font-size: 1.5rem;
  cursor: pointer;
}
.shopping-cart-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 175px;
  text-align: center;
}
.shopping-cart-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.shopping-cart-artist {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 6px;
}
.shopping-cart-details {
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 6px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.shopping-cart-price {
  font-weight: bold;
  color: #000;
  font-size: 1rem;
  min-width: 80px;
}

.shopping-cart-price-container {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}
