/* ============================================
   Showcase Page - Additional Styles
   ============================================ */

/* Invalid Link Error */
.invalid-link-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
}

.invalid-link-error.hidden {
  display: none;
}

.error-card {
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
}

.error-card__icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.error-card__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.error-card__message {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Hero */
.showcase-hero {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-xl);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
}

.showcase-hero__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-start), var(--color-primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.showcase-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* WhatsApp CTA */
.showcase-cta {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.showcase-cta__card {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.showcase-cta__qr {
  flex-shrink: 0;
  text-align: center;
}

.showcase-cta__qr canvas {
  border-radius: var(--radius-md);
}

.showcase-cta__qr-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.showcase-cta__info h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.showcase-cta__info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* WhatsApp button */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
}

.btn--whatsapp .btn__icon {
  width: 20px;
  height: 20px;
}

/* Products section */
.showcase-products {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

/* Showcase product cards: read-only (no quantity controls) */
.showcase-products .product-card {
  cursor: default;
}

.showcase-products .product-card:hover {
  transform: none;
}

/* Responsive */
@media (max-width: 640px) {
  .showcase-hero__title {
    font-size: var(--font-size-2xl);
  }

  .showcase-cta__card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

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