@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --q-green: #053f2f;
    --q-green-2: #0b5b43;
    --q-orange: #f47521;
    --q-cream: #fff3d8;
    --q-light: #fffaf0;
    --q-dark: #14251f;
}

* { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(244,117,33,.28), transparent 32rem),
        linear-gradient(135deg, #fff7e4 0%, #fffaf0 45%, #eaf7ee 100%);
    color: var(--q-dark);
}

.q-navbar {
    background: rgba(5, 63, 47, .97);
    box-shadow: 0 12px 30px rgba(5, 63, 47, .18);
}

.brand-mark {
    background: var(--q-orange);
    color: white;
    padding: .15rem .35rem;
    border-radius: .6rem;
    margin-right: .15rem;
}

.hero-card {
    background: linear-gradient(135deg, var(--q-green), var(--q-green-2));
    color: white;
    border: 0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(5,63,47,.22);
}

.glass-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(20,37,31,.10);
    backdrop-filter: blur(12px);
}

.option-card {
    border: 1px solid rgba(5,63,47,.10);
    border-radius: 1.25rem;
    background: white;
    transition: .18s ease;
    cursor: pointer;
    min-height: 105px;
}

.option-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244,117,33,.55);
    box-shadow: 0 14px 28px rgba(20,37,31,.12);
}

.option-card input { transform: scale(1.25); }

.ingredient-img {
    width: 58px;
    height: 58px;
    border-radius: 1rem;
    object-fit: cover;
    background: #f5ead7;
    border: 1px solid rgba(5,63,47,.10);
}

.product-card {
    border-radius: 1.5rem;
    border: 2px solid transparent;
    background: white;
    transition: .18s ease;
}

.product-card:hover {
    border-color: var(--q-orange);
    transform: translateY(-2px);
}

.btn-qmassa {
    background: linear-gradient(135deg, var(--q-orange), #ff9a3d);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(244,117,33,.28);
}

.btn-qmassa:hover { color: white; filter: brightness(.98); }

.badge-soft {
    background: rgba(244,117,33,.12);
    color: #97420b;
    border-radius: 999px;
}

.admin-title {
    font-weight: 800;
    color: var(--q-green);
}

.table {
    border-radius: 1rem;
    overflow: hidden;
}

.q-modal {
    border: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(20,37,31,.25);
}

.quantity-control {
    gap: .75rem;
}

.quantity-control .btn {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 800;
}

.acomp-qty {
    max-width: 78px;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid rgba(5,63,47,.18);
}

.acomp-card.acomp-selected {
    border-color: rgba(244,117,33,.85);
    box-shadow: 0 14px 28px rgba(244,117,33,.14);
}

.acomp-card.acomp-disabled {
    opacity: .48;
    filter: grayscale(.45);
}
