/* Evergreen /activities/* landing pages — shared layout hooks */
.evergreen-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--outline);
}

@media (min-width: 768px) {
  .evergreen-breadcrumb {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .evergreen-breadcrumb {
    padding-left: 64px;
    padding-right: 64px;
  }
}

body.evergreen-activity-page .activity-right {
  position: sticky;
  top: 84px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.evergreen-activity-page .booking-card {
  position: static;
  top: auto;
}

/* Hide legacy sidebar price blocks until DB data is applied */
body.evergreen-activity-page:not(.evergreen-ready) .booking-price,
body.evergreen-activity-page:not(.evergreen-ready) .booking-price-free,
body.evergreen-activity-page:not(.evergreen-ready) .booking-price-sub,
body.evergreen-activity-page:not(.evergreen-ready) .booking-price-huf {
  display: none !important;
}

body.evergreen-activity-page:not(.evergreen-ready) .chip--kp,
body.evergreen-activity-page:not(.evergreen-ready) #kp-earn-title {
  visibility: hidden;
}

.booking-price-slot {
  min-height: 48px;
}

.booking-price-slot:empty {
  display: none;
}

.booking-price-rollup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.booking-price-rollup--free {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.booking-line--credits {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.1;
}

.booking-line--huf {
  font-size: 14px;
  font-weight: 600;
  color: var(--outline);
}

.booking-line--kp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 4px;
}

.booking-kp-icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.evergreen-upcoming {
  margin-top: 8px;
}

.upcoming-events-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upcoming-event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.upcoming-event-card:hover {
  background: var(--surface-container-low);
  border-color: var(--primary-fixed-dim);
  box-shadow: 0 2px 12px rgba(84, 96, 63, 0.1);
}

.upcoming-event-main {
  min-width: 0;
  flex: 1;
}

.upcoming-event-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 2px;
}

.upcoming-event-time {
  font-size: 13px;
  color: var(--outline);
}

.upcoming-event-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.upcoming-event-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.upcoming-event-kp {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
}

.upcoming-events-empty,
.upcoming-events-loading {
  font-size: 14px;
  color: var(--outline);
  line-height: 1.5;
}

.upcoming-events-empty a {
  color: var(--primary);
  font-weight: 600;
}

.evergreen-upcoming--pulse {
  animation: evergreen-pulse 1.2s ease;
}
@keyframes evergreen-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(84, 96, 63, 0.25); border-radius: 16px; }
}
