/* ═══════════════════════════════════════════════════════════════════
   Product Show Pages — shared styles
   Uses CSS variables from landing.css
   ═══════════════════════════════════════════════════════════════════ */

/* ── Back link ── */
.show-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.show-back-link {
  display: inline-flex;
  padding: 2rem 2rem 0;
}

.show-back-link:hover { color: var(--color-sage); }

.show-back-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.show-back-link:hover svg { transform: translateX(-3px); }

/* ── Two-column layout ── */
.show-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* ── Product image ── */
.show-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.show-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.show-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-sage-muted) 0%, var(--color-sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-image-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--color-sage);
  opacity: 0.5;
}

/* Webinar banner-ratio image */
.show-image-placeholder--wide {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--color-sand-warm) 0%, var(--color-sand) 60%, var(--color-sage-muted) 100%);
}

.show-image-placeholder--wide svg {
  color: var(--color-terracotta);
}

/* Done-for-you ribbon on image */
.show-image-ribbon-wrap {
  position: relative;
}

.show-image-ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.375rem 0.875rem;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-full);
  z-index: 1;
}

/* ── Type badge ── */
.show-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  background: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sage);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.show-type-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-sage);
  border-radius: 50%;
}

.show-type-badge--terracotta {
  color: var(--color-terracotta);
}

.show-type-badge--terracotta::before {
  background: var(--color-terracotta);
}

/* ── Titles ── */
.show-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 0.625rem;
}

.show-subtitle {
  font-size: 1.125rem;
  color: var(--color-charcoal-light);
  margin-bottom: 2rem;
}

.show-subtitle--italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-terracotta);
}

/* ── Body copy ── */
.show-description {
  font-size: 1rem;
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.show-description p {
  margin-bottom: 1rem;
}

.show-description p:last-child {
  margin-bottom: 0;
}

/* ── Sand info card (file info, agenda, included) ── */
.show-card {
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.show-card-header {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--color-sand-warm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.show-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0;
}

.show-card-header svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* ── Info list (digital product file details) ── */
.show-info-list {
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.show-info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-charcoal-light);
}

.show-info-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.show-info-list li strong {
  color: var(--color-charcoal);
  font-weight: 500;
  margin-right: 0.25rem;
}

/* ── Event details strip (webinar) ── */
.show-event-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.show-event-detail {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.show-event-icon {
  width: 40px;
  height: 40px;
  background: rgba(198, 123, 92, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.show-event-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-terracotta);
}

.show-event-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal-light);
  margin-bottom: 0.2rem;
}

.show-event-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0;
}

.show-event-value--spots {
  color: var(--color-terracotta);
}

/* ── Spots urgency alert ── */
.show-spots-alert {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: rgba(198, 123, 92, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-terracotta);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.show-spots-alert svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Agenda list (webinar) ── */
.show-agenda-list {
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show-agenda-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--color-charcoal-light);
}

.show-agenda-num {
  min-width: 26px;
  height: 26px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ── Consultant header (consultation) ── */
.show-consultant-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.show-consultant-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(156, 175, 136, 0.3);
  overflow: hidden;
}

.show-consultant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-consultant-avatar svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.show-consultant-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.show-consultant-role {
  font-size: 0.875rem;
  color: var(--color-charcoal-light);
  margin: 0;
}

/* ── Meta pills (consultation) ── */
.show-meta-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.show-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-charcoal-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.show-meta-pill svg {
  width: 14px;
  height: 14px;
  color: var(--color-sage);
}

/* ── Time slots grid (consultation) ── */
.show-slots-header {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--color-sand-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.show-slots-header h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.show-slots-header h3 svg {
  width: 18px;
  height: 18px;
  color: var(--color-sage);
}

.show-slots-hint {
  font-size: 0.8125rem;
  color: var(--color-charcoal-light);
}

.show-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.show-slot-chip {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.show-slot-day {
  font-size: 0.6875rem;
  color: var(--color-charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.show-slot-time {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 0.25rem;
}

.show-slots-more {
  padding: 0.75rem 1.5rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-charcoal-light);
  text-align: center;
}

/* ── How it works (done-for-you) ── */
.show-how-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.show-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2.5rem;
}

.show-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sage-light), var(--color-sage-muted));
}

.show-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.125rem 0;
}

.show-step-num {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 2px solid var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-sage);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.show-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
  padding-top: 0.5rem;
}

.show-step-desc {
  font-size: 0.9375rem;
  color: var(--color-charcoal-light);
  margin: 0;
}

/* ── Included grid (done-for-you) ── */
.show-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.show-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-sand-warm);
  border-right: 1px solid var(--color-sand-warm);
  font-size: 0.9375rem;
  color: var(--color-charcoal-light);
}

.show-included-item:nth-child(even) {
  border-right: none;
}

.show-included-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.show-included-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Purchase sidebar ── */
.show-sidebar {
  position: sticky;
  top: 2rem;
}

.show-purchase-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.show-purchase-body {
  padding: 2rem;
}

.show-price-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal-light);
  margin-bottom: 0.375rem;
}

.show-price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1;
  margin-bottom: 1.75rem;
}

/* Premium DFY flag */
.show-premium-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-warm) 100%);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.show-premium-flag svg {
  width: 14px;
  height: 14px;
}

.btn-show-purchase {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(61, 61, 61, 0.25);
  margin-bottom: 1rem;
}

.btn-show-purchase:hover {
  background: var(--color-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(156, 175, 136, 0.35);
  color: var(--color-white);
}

.btn-show-purchase:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.show-purchase-note {
  font-size: 0.8125rem;
  color: var(--color-charcoal-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.show-purchase-note svg {
  width: 13px;
  height: 13px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.show-purchase-divider {
  height: 1px;
  background: var(--color-sand-warm);
  margin: 1.5rem 0;
}

.show-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.show-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-charcoal-light);
}

.show-trust-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 3px;
}

.show-purchase-footer {
  background: var(--color-sand);
  border-top: 1px solid var(--color-sand-warm);
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  color: var(--color-charcoal-light);
  text-align: center;
}

.show-purchase-footer a {
  color: var(--color-sage);
  text-decoration: none;
  font-weight: 500;
}

/* ── Slot selector (consultation) ── */
.show-slot-select-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal-light);
  margin-bottom: 0.5rem;
  display: block;
}

.show-slot-select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  background: var(--color-sand);
  border: 1px solid var(--color-sand-warm);
  border-radius: var(--radius-md);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color var(--transition-smooth);
}

.show-slot-select:focus {
  outline: none;
  border-color: var(--color-sage);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .show-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .show-sidebar {
    position: static;
  }

  .show-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .show-layout {
    padding: 1.5rem 1rem 3rem;
  }

  .show-back-link {
    padding: 1.5rem 1rem 0;
  }

  .show-event-strip {
    grid-template-columns: 1fr;
  }

  .show-included-grid {
    grid-template-columns: 1fr;
  }

  .show-included-item {
    border-right: none;
  }

  .show-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
