.showcase-container {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navigation-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.back-button {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-button:hover {
  text-decoration: underline;
}

.artwork-title {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  margin-right: 3%;
}

.artwork-display {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.artwork-frame {
  width: 100%;
  max-width: 1000px;
  position: relative;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.artwork-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.artwork-info {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artwork-description {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic;
  margin-bottom: 10px;
}

.artwork-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  color: #666;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.action-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  text-decoration: none !important;
}

.buy-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}

.buy-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.favorite-button {
  background-color: #f5f5f5;
  color: #333;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.favorite-button:hover {
  background-color: #eaeaea;
}

.related-artworks {
  width: 100%;
  margin-top: 60px;
}

.related-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.related-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 767px) {
  .back-button {
    display: block !important;
    align-items: left;
    gap: 0px;
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 20px;
    margin-top: -10px;
  }

  .artwork-title {
    display: block !important;
    width: 100%;
    float: left;
    clear: both;
  }

  .navigation-bar {
    width: 100%;
    display: block;
    justify-content: normal;
    align-items: left;
    margin-bottom: 18px;
  }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* Laptop */
@media (min-width: 1025px) and (max-width: 1440px) {

}

/* 4K and larger screens */
@media (min-width: 1441px) {

}
