/* ==============================================================
   Booked / Blocked Slot Styles (Add-on)
   Add this to the END of your existing style.css file.
   ============================================================== */

/* Social proof banner above slots */
.slots__proof {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  color: #92400e;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4px;
  animation: pulseProof 2.5s ease-in-out;
}
.slots__proof strong { color: #b45309; font-weight: 700; }
@keyframes pulseProof {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  30%      { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15); }
}

/* ---------- BOOKED SLOT ---------- */
.slot-chip--booked {
  background: #fef2f2 !important;
  border: 1.5px solid #fecaca !important;
  cursor: not-allowed !important;
  opacity: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px !important;
  position: relative;
  overflow: hidden;
}
.slot-chip--booked:hover {
  transform: none !important;
  border-color: #fecaca !important;
  box-shadow: none !important;
}
.slot-chip--booked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(220, 38, 38, 0.04) 8px,
    rgba(220, 38, 38, 0.04) 16px
  );
  pointer-events: none;
}
.slot-chip--booked .slot-chip__time {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 1.5px;
}
.slot-chip--booked .slot-chip__status {
  font-size: 10px;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---------- ADMIN-BLOCKED SLOT ---------- */
.slot-chip--blocked {
  background: #f9fafb !important;
  border: 1.5px dashed #d1d5db !important;
  cursor: not-allowed !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px !important;
}
.slot-chip--blocked:hover {
  transform: none !important;
  border-color: #d1d5db !important;
  box-shadow: none !important;
}
.slot-chip--blocked .slot-chip__time {
  font-size: 14px;
  color: #9ca3af;
}
.slot-chip--blocked .slot-chip__status {
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Make sure disabled buttons don't receive pointer events */
.slot-chip:disabled {
  pointer-events: none;
}
