/* Sigret Manager — Front-End Styles v1.2.0 */

/* ── ORDER PAGE DISH ITEMS ───────────────────────────────────────────────── */

.si-dish-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fdfaf5;
    border: 1px solid rgba(44,31,15,.1);
    border-radius: 6px;
    padding: .85rem 1rem;
    margin-bottom: .75rem;
    transition: border-color .2s;
}

.si-dish-item:hover {
    border-color: rgba(61,92,42,.35);
}

.si-dish-photo {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e8e0d0;
}

.si-dish-photo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    background: #e8e0d0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.si-dish-info {
    flex: 1;
}

.si-dish-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #2c1f0f;
    font-weight: 600;
    margin: 0 0 .2rem;
}

.si-dish-desc {
    font-size: .78rem;
    color: #8a7560;
    margin: 0 0 .3rem;
    line-height: 1.4;
}

.si-dish-price {
    font-size: .9rem;
    color: #3d5c2a;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}

.si-dish-badge {
    display: inline-block;
    background: #4a5c3a;
    color: #fff;
    font-size: .6rem;
    padding: 2px 7px;
    border-radius: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-left: .4rem;
    vertical-align: middle;
}

.si-qty-wrap {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.si-qty-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a7560;
}

.si-qty-input {
    width: 52px;
    text-align: center;
    padding: .35rem .4rem;
    border: 1px solid rgba(44,31,15,.18);
    border-radius: 4px;
    font-size: .9rem;
    font-family: 'Lato', sans-serif;
    color: #2c1f0f;
    background: #f8f4ed;
    -moz-appearance: textfield;
}

.si-qty-input::-webkit-inner-spin-button,
.si-qty-input::-webkit-outer-spin-button {
    opacity: 1;
}

/* ── ORDER SUMMARY ───────────────────────────────────────────────────────── */

#si-order-summary {
    background: #f0ebe0;
    border: 1px solid rgba(61,92,42,.25);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
}

.si-summary-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #3d5c2a;
    margin-bottom: .6rem;
}

.si-cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: #5a4a35;
    padding: .2rem 0;
    border-bottom: 1px solid rgba(44,31,15,.07);
}

.si-cart-line:last-of-type {
    border-bottom: none;
}

.si-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: .9rem;
    color: #2c1f0f;
    margin-top: .6rem;
    padding-top: .6rem;
    border-top: 2px solid rgba(44,31,15,.15);
}

/* ── MESSAGES ────────────────────────────────────────────────────────────── */

.si-msg {
    padding: .85rem 1.1rem;
    border-radius: 5px;
    font-size: .85rem;
    margin: .8rem 0;
    line-height: 1.5;
}

.si-msg-success {
    background: #e8f5e9;
    border-left: 4px solid #3d5c2a;
    color: #1b5e20;
}

.si-msg-error {
    background: #fff3e0;
    border-left: 4px solid #c8831a;
    color: #7a4a00;
}
