/* Lezzet Store Hours - Public CSS */

/* Status bar */
.lsh-status-bar {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.lsh-status-pill {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 30px; font-size: 13px;
    border: 1px solid transparent; font-weight: 500;
}
.lsh-pill-open { background: rgba(46,204,113,.15); border-color: rgba(46,204,113,.4); color: #2ecc71; }
.lsh-pill-closed { background: rgba(231,76,60,.15); border-color: rgba(231,76,60,.4); color: #e74c3c; }
.lsh-pill-badge { font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 2px 8px; border-radius: 20px; }
.lsh-pill-open .lsh-pill-badge { background: #2ecc71; color: #fff; }
.lsh-pill-closed .lsh-pill-badge { background: #e74c3c; color: #fff; }
.lsh-pill-time { font-size: 11px; color: #aaa; }

/* Hours table */
.lsh-hours-table-wrap { overflow-x: auto; }
.lsh-hours-table {
    width: 100%; border-collapse: collapse;
    background: #1E1E1E; border-radius: 8px; overflow: hidden;
}
.lsh-hours-table thead th {
    background: #111; color: #fff; padding: 12px 16px;
    font-family: 'Oswald', sans-serif; font-size: 13px;
    text-transform: uppercase; letter-spacing: .05em;
    border-bottom: 2px solid #CC2222;
}
.lsh-hours-table tbody tr { border-bottom: 1px solid #2E2E2E; }
.lsh-hours-table tbody tr.lsh-today { background: rgba(204,34,34,.08); }
.lsh-hours-table td { padding: 12px 16px; font-size: 13px; }
.lsh-day-cell { font-weight: 600; color: #fff; white-space: nowrap; }
.lsh-today-badge {
    display: inline-block; font-size: 10px; background: #CC2222;
    color: #fff; padding: 2px 8px; border-radius: 20px; margin-left: 8px;
    font-weight: 600; letter-spacing: .05em;
}
.lsh-open-cell { color: #2ecc71; }
.lsh-closed-cell { color: #666; }
.lsh-closed-text { font-style: italic; }

/* Checkout closed banner */
.lsh-checkout-closed {
    text-align: center; padding: 48px 24px;
    background: #1E1E1E; border: 2px solid #CC2222;
    border-radius: 12px; margin-bottom: 24px;
}
.lsh-closed-icon-big { font-size: 64px; margin-bottom: 12px; }
.lsh-checkout-closed h2 { font-family: 'Oswald', sans-serif; font-size: 28px; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
.lsh-checkout-closed p { color: #aaa; font-size: 15px; margin-bottom: 8px; }
.lsh-next-open { color: #fff !important; font-size: 14px !important; }
.lsh-next-open strong { color: #CC2222; }
.lsh-back-btn {
    display: inline-block; margin-top: 20px;
    background: #CC2222; color: #fff !important;
    padding: 12px 24px; border-radius: 6px; text-decoration: none !important;
    font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
}
.lsh-back-btn:hover { background: #a01b1b; }

/* Shop closed banner */
.lsh-closed-banner {
    display: flex; align-items: center; gap: 16px;
    background: rgba(204,34,34,.1); border: 1px solid rgba(204,34,34,.4);
    border-radius: 8px; padding: 16px 20px; margin-bottom: 24px;
}
.lsh-closed-banner .lsh-closed-icon { font-size: 32px; flex-shrink: 0; }
.lsh-closed-banner strong { display: block; font-size: 16px; color: #CC2222; margin-bottom: 4px; }
.lsh-closed-banner p { margin: 0; color: #aaa; font-size: 13px; }

/* Checkout type closed message */
.lsh-type-closed-msg {
    padding: 14px 16px; border-radius: 8px; margin-top: 10px;
    background: rgba(204,34,34,.1); border: 1px solid rgba(204,34,34,.4);
    display: flex; align-items: center; gap: 12px;
}
.lsh-type-closed-msg .lsh-msg-icon { font-size: 24px; flex-shrink: 0; }
.lsh-type-closed-msg strong { display: block; color: #e74c3c; font-size: 14px; }
.lsh-type-closed-msg span { font-size: 12px; color: #aaa; }
