/* La Cantine d'Owen — Booking CSS */
:root {
  --lco-accent: #FDA729;
  --lco-dark: #000000;
  --lco-bg: #F5F0E6;
  --lco-bg2: #ece5d5;
  --lco-border: #e2d9c5;
  --lco-text: #1a1a18;
  --lco-muted: #7a7a72;
  --lco-error: #c0392b;
  --lco-success: #4a8c5c;
  --lco-r: 12px;
}

.lco-bk-wrap { max-width: 720px; margin: 0 auto; font-family: 'DM Sans', 'Instrument Sans', system-ui, sans-serif; color: var(--lco-text); }

/* STEPS */
.lco-bk-steps { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.lco-bk-step-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; border: 2px solid var(--lco-border); background: #fff; color: var(--lco-muted); flex-shrink: 0; transition: all .2s; }
.lco-bk-step-dot.active { background: var(--lco-accent); border-color: var(--lco-accent); color: var(--lco-dark); }
.lco-bk-step-dot.done { background: var(--lco-dark); border-color: var(--lco-dark); color: #fff; }
.lco-bk-step-line { flex: 1; height: 2px; background: var(--lco-border); border-radius: 2px; }

/* CARD */
.lco-bk-card { background: #fff; border: 1px solid var(--lco-border); border-radius: var(--lco-r); padding: 32px; margin-bottom: 24px; }
.lco-bk-panel { display: none; }
.lco-bk-panel.active { display: block; animation: lco-fade .3s ease; }
@keyframes lco-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* TITLES */
.lco-bk-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 300; margin: 0 0 20px; color: var(--lco-dark); }
.lco-bk-subtitle { font-size: 13px; color: var(--lco-muted); margin: -10px 0 20px; line-height: 1.7; }
.lco-bk-section-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--lco-muted); margin: 24px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--lco-border); }

/* GRID */
.lco-bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .lco-bk-grid { grid-template-columns: 1fr; } .lco-bk-card { padding: 20px 16px; } }

/* FIELDS */
.lco-bk-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lco-bk-field label { font-size: 12px; font-weight: 600; color: var(--lco-text); letter-spacing: .01em; }
.lco-bk-hint { font-weight: 400; color: var(--lco-muted); font-size: 11px; }
.lco-bk-field input,
.lco-bk-field select,
.lco-bk-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--lco-border); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--lco-text); background: var(--lco-bg); transition: border-color .15s, background .15s; box-sizing: border-box; }
.lco-bk-field input:focus,
.lco-bk-field select:focus,
.lco-bk-field textarea:focus { outline: none; border-color: var(--lco-accent); background: #fff; }
.lco-bk-field textarea { resize: vertical; min-height: 90px; }
.lco-bk-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a72' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* CHECKBOX */
.lco-bk-checkbox-field { margin-bottom: 16px; }
.lco-bk-checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.lco-bk-checkbox-label input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--lco-accent); flex-shrink: 0; }

/* SLOTS GRID */
.lco-bk-slots-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.lco-bk-slot-group { margin-bottom: 12px; }
.lco-bk-slot-date { font-size: 12px; font-weight: 700; color: var(--lco-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.lco-bk-slot-times { display: flex; flex-wrap: wrap; gap: 8px; }
.lco-bk-slot { padding: 8px 16px; border: 1.5px solid var(--lco-border); border-radius: 8px; background: var(--lco-bg); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; user-select: none; }
.lco-bk-slot:hover { border-color: var(--lco-accent); color: var(--lco-dark); }
.lco-bk-slot.selected { border-color: var(--lco-accent); background: var(--lco-accent); color: var(--lco-dark); }

/* ACTIONS */
.lco-bk-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.lco-bk-btn { padding: 12px 22px; border-radius: 8px; border: 1.5px solid var(--lco-border); background: #fff; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--lco-text); transition: all .15s; }
.lco-bk-btn:hover { border-color: var(--lco-dark); }
.lco-bk-btn-primary { background: var(--lco-dark); color: #fff; border-color: var(--lco-dark); font-weight: 700; }
.lco-bk-btn-primary:hover { background: #222; }
.lco-bk-btn-primary:disabled { opacity: .45; cursor: not-allowed; }

/* RECAP */
.lco-bk-recap { background: var(--lco-bg); border-radius: 8px; padding: 20px 24px; margin-bottom: 20px; }
.lco-bk-recap-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--lco-border); font-size: 14px; }
.lco-bk-recap-row:last-child { border-bottom: none; }
.lco-bk-recap-label { font-weight: 600; min-width: 160px; flex-shrink: 0; color: var(--lco-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.lco-bk-recap-value { color: var(--lco-text); line-height: 1.6; }

/* ERROR / FOOTNOTE */
.lco-bk-error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--lco-error); margin-bottom: 16px; }
.lco-bk-footnote { font-size: 12px; color: var(--lco-muted); margin-top: 16px; line-height: 1.7; }
