/* ============================================
   CousCousBowl — App Interface
   ============================================ */

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
    --color-primary:      #A95403;
    --color-primary-dark: #8E3C02;
    --color-text-cream:   #F1D5AB;
    --color-gold-light:   #F1D5AB;
    --color-gold-dark:    #D4A46A;
    --color-success:      #7A9E3E;
    --color-error:        #B83B2B;
    --color-open:         #7A9E3E;
    --color-closed:       #8E3C02;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 20px;
    --shadow:    0 4px 16px rgba(0,0,0,.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.18);
    --trans:     all 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

body {
    min-height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-cream);
    background:
        radial-gradient(ellipse 120% 70% at 15% 55%, #A95403 0%, transparent 60%),
        linear-gradient(90deg, #8C3A00 0%, #7E3201 50%, #6F2A01 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* ── Status Banner ───────────────────────────────────────────────────────── */
.status-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--trans);
}

.status-banner.open {
    background: rgba(122, 158, 62, 0.2);
    color: #c8f09a;
}

.status-banner.closed {
    background: rgba(0, 0, 0, 0.25);
    color: #e0c8a8;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.status-dot.open   { background: var(--color-open); }
.status-dot.closed { background: #c0a080; animation: none; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Scroll-snap Screens ─────────────────────────────────────────────────── */
.screen {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-home {
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1.5rem;
    padding-top: 3rem;
}

.screen-info {
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

/* Indicateur scroll */
.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(241, 213, 171, 0.35);
    pointer-events: none;
}

.scroll-hint svg {
    animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50%       { transform: translateY(7px); opacity: 0.6; }
}

/* ── Info Blocks (Écran 2) ───────────────────────────────────────────────── */
.info-block {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(241, 213, 171, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    width: 100%;
    max-width: 480px;
}

button.info-block {
    font-family: var(--font-body);
    color: var(--color-text-cream);
    cursor: pointer;
    text-align: left;
    transition: var(--trans);
}

button.info-block:hover {
    border-color: rgba(241, 213, 171, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.info-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.info-block-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold-light);
}

.info-block-subtitle {
    font-size: 0.72rem;
    color: rgba(241, 213, 171, 0.45);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Resto cards */
.resto-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resto-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(241, 213, 171, 0.12);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: var(--font-body);
    color: var(--color-text-cream);
    transition: var(--trans);
}

.resto-card:hover, .resto-card:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(241, 213, 171, 0.28);
}

.resto-pin {
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.resto-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.resto-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-gold-light);
}

.resto-addr {
    font-size: 0.75rem;
    color: rgba(241, 213, 171, 0.5);
}

.resto-chevron {
    color: rgba(241, 213, 171, 0.3);
    flex-shrink: 0;
}

/* Social chips (contact block) */
.social-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(241, 213, 171, 0.15);
    border-radius: 999px;
    text-decoration: none;
    color: rgba(241, 213, 171, 0.65);
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--trans);
}

.social-chip:hover {
    background: rgba(255, 255, 255, 0.13);
    color: var(--color-gold-light);
    border-color: rgba(241, 213, 171, 0.3);
}

.social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Modals ──────────────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeInModal 0.2s ease;
}

.modal-overlay[hidden] { display: none; }

@keyframes fadeInModal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-card {
    background: #faf5ee;
    color: #2a1000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.5rem 1.5rem 2.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUpModal 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes slideUpModal {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0ebe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a3a1a;
    flex-shrink: 0;
    transition: var(--trans);
}

.modal-close:hover { background: #e0d8cd; }

.modal-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(169, 84, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a1000;
    text-align: center;
    margin-bottom: 0.35rem;
}

.modal-addr {
    font-size: 0.85rem;
    color: #7a5a3a;
    text-align: center;
    margin-bottom: 1.25rem;
}

.modal-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #ede5da;
}

.modal-contact-row:last-of-type { border-bottom: none; }

.modal-contact-icon { color: #7a5a3a; flex-shrink: 0; }

.snap-color { color: #FFFC00; filter: drop-shadow(0 0 2px rgba(0,0,0,0.25)); }

.modal-contact-text {
    font-size: 0.9rem;
    color: #2a1000;
    font-weight: 500;
}

.modal-phone-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-phone-link:hover { text-decoration: underline; }

#contactSubmitBtn { margin-top: 1rem; }

/* ── App Home Screen (legacy alias, used by .screen-home) ────────────────── */
.app-home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1.5rem;
    padding-top: 3rem; /* espace banner */
}

.app-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 5.5rem);
    font-weight: 600;
    line-height: 1;
    color: var(--color-gold-light);
    letter-spacing: -0.01em;
}

.brand-name span {
    color: var(--color-gold-dark);
}

.brand-sub {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(241, 213, 171, 0.6);
    font-weight: 400;
}

.app-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-pill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(241, 213, 171, 0.12);
    border: 1px solid rgba(241, 213, 171, 0.25);
    color: var(--color-gold-light);
    letter-spacing: 0.03em;
}

.app-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

/* ── Boutons principaux ──────────────────────────────────────────────────── */
.btn-main {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-primary);
    color: var(--color-gold-light);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: var(--shadow);
    letter-spacing: 0.02em;
}

.btn-main:hover   { background: var(--color-primary-dark); transform: translateY(-1px); }
.btn-main:active  { transform: translateY(0); }
.btn-main:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
    width: 100%;
    padding: 13px 24px;
    background: transparent;
    color: var(--color-gold-light);
    border: 1.5px solid rgba(241, 213, 171, 0.35);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--trans);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover { background: rgba(241, 213, 171, 0.08); }

.btn-track {
    font-size: 0.88rem;
    color: rgba(241, 213, 171, 0.7);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--trans);
    display: inline-block;
}

.btn-track:hover { color: var(--color-gold-light); }

/* ── Bouton légal ────────────────────────────────────────────────────────── */
.btn-legal {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 200;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(241, 213, 171, 0.2);
    color: rgba(241, 213, 171, 0.5);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
}

.btn-legal:hover { color: var(--color-gold-light); background: rgba(0,0,0,0.4); }

/* ── Legal Modal ─────────────────────────────────────────────────────────── */
.legal-modal {
    position: fixed;
    bottom: 3.5rem;
    right: 1rem;
    z-index: 300;
    background: #2a1205;
    border: 1px solid rgba(241, 213, 171, 0.2);
    border-radius: var(--radius);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
}

.legal-modal[hidden] { display: none; }

.legal-modal a {
    color: rgba(241, 213, 171, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--trans);
    display: block;
}

.legal-modal a:hover {
    background: rgba(241, 213, 171, 0.1);
    color: var(--color-gold-light);
}

/* ── Overlay de commande ─────────────────────────────────────────────────── */
.order-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: #faf5ee;
    color: #1a0a00;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

.order-overlay.active {
    transform: translateY(0);
}

/* Header overlay */
.overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 14px 12px;
    border-bottom: 1px solid #e8ded2;
    background: #fff;
    flex-shrink: 0;
    gap: 8px;
    min-height: 56px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border: none;
    background: #f0ebe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a3a1a;
    flex-shrink: 0;
    transition: var(--trans);
}

.btn-icon:hover { background: #e0d8cd; }

.overlay-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #3a1a00;
    flex: 1;
    text-align: center;
}

.cart-badge {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--color-primary);
    color: var(--color-gold-light);
    padding: 4px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Steps */
.overlay-step {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.overlay-step.active {
    display: flex;
}

/* ── Step Menu ───────────────────────────────────────────────────────────── */
.product-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1.5px solid #ede5da;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    transition: var(--trans);
    position: relative;
    width: 100%;
    font-family: var(--font-body);
}

.product-card:hover, .product-card:active {
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.product-card.featured {
    border-color: var(--color-primary);
    background: #fff9f4;
}

.product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-primary);
    color: #f7e3c0;
    padding: 3px 8px;
    border-radius: 999px;
}

.product-tag.premium {
    background: #5a3a1a;
}

.product-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.food-svg {
    width: 52px;
    height: 52px;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a1000;
    margin-bottom: 2px;
}

.product-desc {
    font-size: 0.8rem;
    color: #7a5a3a;
    margin-bottom: 3px;
}

.product-includes {
    font-size: 0.72rem;
    color: var(--color-primary);
    font-weight: 500;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ── Step Options ────────────────────────────────────────────────────────── */
.options-header {
    padding: 16px 16px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.options-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a1000;
}

.options-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.option-section {
    padding: 14px 16px 0;
}

.option-title {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a5a3a;
    margin-bottom: 8px;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    background: #f0ebe3;
    border: 1.5px solid #ddd0c0;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a1a00;
    cursor: pointer;
    transition: var(--trans);
    user-select: none;
}

.chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-gold-light);
}

.chip-extra {
    font-size: 0.75rem;
    opacity: 0.85;
}

.options-footer {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #e8ded2;
    margin-top: auto;
    flex-shrink: 0;
}

.options-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #5a3a1a;
}

.options-total-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ── Step Panier ─────────────────────────────────────────────────────────── */
.cart-list {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid #ede5da;
    border-radius: var(--radius);
    padding: 12px 14px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a1000;
}

.cart-item-details {
    font-size: 0.78rem;
    color: #7a5a3a;
}

.cart-item-extra {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-remove {
    width: 26px;
    height: 26px;
    border: none;
    background: #f0ebe3;
    border-radius: 50%;
    color: #9a6a4a;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
    flex-shrink: 0;
}

.btn-remove:hover { background: #fdddd5; color: var(--color-error); }

.cart-summary {
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e8ded2;
    flex-shrink: 0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #2a1000;
    margin-bottom: 4px;
}

.cart-total-row strong {
    font-size: 1.15rem;
    color: var(--color-primary);
}

.cart-note {
    font-size: 0.75rem;
    color: #9a7a5a;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px 16px;
    background: #fff;
    flex-shrink: 0;
}

/* ── Step Form ───────────────────────────────────────────────────────────── */
.form-intro {
    padding: 16px 16px 0;
}

.form-intro p {
    font-size: 0.9rem;
    color: #7a5a3a;
}

.form-group {
    padding: 12px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #5a3a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid #ddd0c0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2a1000;
    outline: none;
    transition: var(--trans);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(169, 84, 3, 0.12);
}

.form-group small {
    font-size: 0.75rem;
    color: #9a7a5a;
}

.form-group textarea {
    resize: none;
}

#submitBtn {
    margin: 16px 16px 24px;
    width: calc(100% - 32px);
}

/* ── Step Confirm ────────────────────────────────────────────────────────── */
.confirm-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
}

.confirm-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(122, 158, 62, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a1000;
}

.confirm-sub {
    font-size: 0.9rem;
    color: #7a5a3a;
}

.order-number-display {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    background: #fff5ec;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid rgba(169, 84, 3, 0.2);
    letter-spacing: 0.05em;
}

.confirm-info {
    font-size: 0.82rem;
    color: #9a7a5a;
    max-width: 280px;
}

/* ── Page Suivi ──────────────────────────────────────────────────────────── */
.suivi-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
}

.suivi-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(241, 213, 171, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.suivi-card h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold-light);
    text-align: center;
}

.suivi-card input {
    padding: 14px 16px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(241, 213, 171, 0.25);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold-light);
    outline: none;
    text-align: center;
    letter-spacing: 0.08em;
    width: 100%;
    transition: var(--trans);
}

.suivi-card input::placeholder { color: rgba(241, 213, 171, 0.4); }
.suivi-card input:focus { border-color: var(--color-gold-light); }

.status-result {
    text-align: center;
    padding: 1.2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    display: none;
}

.status-result.visible { display: block; }

.status-result.pending     { background: rgba(169, 84, 3, 0.15);  color: #e8c28e; }
.status-result.accepted    { background: rgba(100, 140, 200, 0.15); color: #b0d0f0; }
.status-result.delivering  { background: rgba(200, 150, 50, 0.15); color: #f0c878; }
.status-result.delivered   { background: rgba(122, 158, 62, 0.15); color: #b8e090; }
.status-result.cancelled   { background: rgba(184, 59, 43, 0.15);  color: #f09090; }

.suivi-back {
    color: rgba(241, 213, 171, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    text-align: center;
    display: block;
    transition: var(--trans);
}
.suivi-back:hover { color: var(--color-gold-light); }

/* ── Admin styles (login page) ───────────────────────────────────────────── */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 480px) {
    .product-card { padding: 16px; }
    .product-icon, .food-svg { width: 60px; height: 60px; }
    .brand-name { font-size: 5rem; }
}

@media (min-width: 768px) {
    .order-overlay {
        max-width: 480px;
        left: 50%;
        right: auto;
        transform: translate(-50%, 100%);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        box-shadow: var(--shadow-lg);
    }
    .order-overlay.active {
        transform: translate(-50%, 0);
    }
}
