.product-showcase {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.showcase-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 6px;
  border-radius: 0 0 100px 100px;
  z-index: 10;
}

.showcase-header {
  display: flex;
  flex-direction: column;
}

.showcase-media {
  height: 100%;
  object-fit: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.showcase-content {
  position: relative;
  display: flex;
  height: 100%;
  padding: 2rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  z-index: 2;
}

.showcase-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.showcase-subtitle {
  margin: 0 0 15px;
  color: #aaa;
  font-size: 14px;
}

.showcase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showcase-price {
  border-radius: 10px;
  font-weight: 800;
  font-size: 17px;
  padding: 0.5rem 1rem;
  background: var(--bg);
  color: var(--money);
}

.showcase-action {
  display: flex;
  background: var(--button);
  color: var(--text-custom);
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 10px;
  font-size: 14px;
  border: 2px solid #ffffff04;
  transition: all 0.25s;
  cursor: pointer;
  justify-content: center;
  text-decoration: none;
}

.showcase-action:hover {
  color: var(--text-default);
  background: var(--span);
}

.full-height-container {
  height: 100%;
}

/* Empty state styles */
.empty-showcase {
  position: relative;
  display: flex;
  height: 100%;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.empty-showcase-bg {
  left: 0;
  top: 0;
  height: 100%;
  object-fit: none;
  position: absolute;
  width: 100%;
  opacity: 0.3;
}

.empty-showcase-content {
  position: relative;
  display: flex;
  height: 100%;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.empty-showcase-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-showcase-message {
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}

.empty-showcase-description {
  color: #aaa;
  font-size: 15px;
}

.empty-showcase-button {
  gap: 0.5rem;
  font-size: 17px;
  display: flex;
  background: var(--span);
  color: var(--bg);
  padding: 10px 15px;
  font-weight: var(--font-weight-7);
  border-radius: var(--br-7);
  transition: all 0.25s;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.empty-showcase-button:hover {
  transform: translateY(-1px);
}