/* Prototype-only overrides. Layered on top of styles.css to make the page
   read as a work-in-progress draft: skeleton blocks, placeholders, draft banner.
   Not for production. */

/* draft banner */
.draft-banner {
  background: #2b2622;
  color: #ffd7dd;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid var(--red);
}
.draft-banner span { color: #fff; }

/* generic dashed placeholder box */
.placeholder-box {
  border: 2px dashed #b9ac97;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.02) 10px,
    rgba(0, 0, 0, 0.05) 10px,
    rgba(0, 0, 0, 0.05) 20px
  );
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  padding: 1.5rem;
  min-height: 120px;
}

/* placeholder logo box in the hero, stands in for artwork */
.hero .placeholder-box {
  width: clamp(210px, 46vw, 320px);
  min-height: 150px;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* skeleton bars for unbuilt content */
.skel {
  background: #e7dcc8;
  border-radius: 6px;
  height: 0.85rem;
}
.skel-lines { display: grid; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.skel-lines li { display: block; }
.skel.w-90 { width: 90%; }
.skel.w-75 { width: 75%; }
.skel.w-60 { width: 60%; }
.skel.w-40 { width: 40%; }
.skel.title { height: 1.4rem; width: 55%; margin-bottom: 1rem; }

/* skeleton card sits in the menu grid next to the real ones */
.card.skeleton { justify-content: flex-start; gap: 0.7rem; }
.card.skeleton .skel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.card.skeleton .skel-row .skel { height: 0.8rem; }
.card.skeleton .skel-row .skel:first-child { flex: 1; }
.card.skeleton .skel-row .skel:last-child { width: 2.5rem; }

/* to-do note, obvious it is a placeholder for the customer */
.todo {
  border-left: 4px solid var(--gold);
  background: #fff8ec;
  color: #7a5b1e;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1rem;
}

/* disabled button, not wired up yet */
.btn-disabled {
  background: #d8cdb8;
  color: #8a7f6d;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
.hero .btn-disabled { background: rgba(255, 255, 255, 0.35); color: #ffe6ea; }

/* static, unfinished ribbon (no animation yet) */
.ribbon-static .ribbon-track { animation: none; opacity: 0.55; }
