/* ============================================
   Noir Code Platform — Rich showcase styles
   ============================================ */

/* Mock search bar */
.mock-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 32rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(194,164,109,0.25);
  border-radius: 2px;
  color: rgba(237,228,211,0.4);
  transition: border-color 0.5s ease;
  cursor: text;
}
.mock-search:hover { border-color: rgba(194,164,109,0.5); }
.mock-search .placeholder { font-family: Baskerville, serif; font-style: italic; font-size: 0.95rem; }

/* Category card */
.cat-card {
  position: relative;
  border: 1px solid rgba(194,164,109,0.12);
  border-radius: 2px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s ease;
  cursor: default;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--cat-color, #C2A46D) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.cat-card:hover::before { opacity: 0.06; }
.cat-card:hover { border-color: rgba(194,164,109,0.35); transform: translateY(-2px); }

/* Pacífico product card */
.pacifico-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20,18,16,0.95), rgba(11,11,11,0.95));
  border: 1px solid rgba(194,164,109,0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.4s ease;
}
.pacifico-card:hover {
  border-color: rgba(194,164,109,0.4);
  transform: translateY(-2px);
}
.pacifico-emoji {
  font-size: 2.5rem;
  filter: saturate(0.7) brightness(0.9);
  line-height: 1;
}

/* Mock business listing */
.biz-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(194,164,109,0.12);
  border-radius: 2px;
  transition: all 0.5s ease;
}
.biz-card:hover {
  background: rgba(194,164,109,0.04);
  border-color: rgba(194,164,109,0.35);
}
.biz-avatar {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  background: rgba(194,164,109,0.08);
  border: 1px solid rgba(194,164,109,0.2);
  color: #C2A46D;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.biz-stars { color: #C2A46D; font-size: 0.7rem; letter-spacing: 2px; }

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid #C2A46D;
  transform: rotate(45deg);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(194,164,109,0.4), transparent);
}
.timeline-item:last-child::after { display: none; }

/* Stat counter */
.stat-number {
  font-family: Baskerville, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #C2A46D;
  line-height: 1;
}
