.vinyl-card {
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 1rem auto;
  overflow: hidden;
  max-width: 360px;
  min-width: 220px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.vinyl-card-header {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.vinyl-card-cover {
  max-width: 200px;
  min-width: 55%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.vinyl-svg-container {
  max-width: 200px;
  min-width: 55%;
  aspect-ratio: 1 / 1;
  position: relative;
  right: 15%;
}

.disk-image {
  width: 100%;
  height: 100%;
  display: block;
}

.cd {
  margin-top: 5%;
  width: 90%;
  height: 90%;
}

.vinyl-card-body {
  padding: 5px 30px;
  flex: 1;
  
  display: flex;
  flex-direction: column;
  align-items: stretch;

}

.vinyl-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.vinyl-card-artist {
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}

.vinyl-card-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0.5rem;
  
}

.vinyl-card-year,
.vinyl-card-condition {
  font-weight: 500;
  font-size: 1.1rem;
}

.vinyl-card-price {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  width: 100%;

}

.vinyl-card-cart {
  background: #4b8f6e;
  color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 0.6rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
  width: 100%;
}

.vinyl-card-cart:hover:not(.in-cart) {
  background: #357a57;
}

.vinyl-card-cart.in-cart {
  background: #fff;
  color: #EB7904;
  border: 2px solid #EB7904;
  cursor: not-allowed;
  opacity: 0.8;
}

.heart-icon {
  color: #d23a3a;
  font-size: 1.6rem;
  margin-left: 1rem;
}

.vinyl-card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  margin-top: 1rem;
}

.not-available-p {
  color: red;
}