/* ============================================
   BASE STYLES & RESET
   ============================================ */

:root {
    /* Brand palette */
    --color-brand-start:    #e8873a;
    --color-brand-end:      #d4551a;
    --color-brand-gradient: linear-gradient(135deg, var(--color-brand-start), var(--color-brand-end));
    --color-accent:         #feb931;
    --color-select:        rgb(227, 19, 82);

    /* Background layers */
    --color-bg-dark:        #1a0e09;
    --color-surface:        rgba(255,255,255,0.06);
    --color-surface-hover:  rgba(255,255,255,0.10);
    --color-surface-active: rgba(255,255,255,0.14);
    --color-border:         rgba(255,255,255,0.12);
    --color-border-strong:  rgba(255,255,255,0.22);

    /* Text */
    --color-text-primary:   #f5f0eb;
    --color-text-secondary: #b8a99a;
    --color-text-muted:     #7a6a5e;

    /* Feedback */
    --color-success:        #4caf76;
    --color-danger:         #e53935;
    --color-warning:        #fb8c00;

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  24px;

    /* Shadows */
    --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
    --shadow-modal:  0 8px 48px rgba(0,0,0,0.65);
    --shadow-button: 0 2px 12px rgba(232,135,58,0.35);

    /* Transitions */
    --transition-fast:   0.15s ease;
    --transition-normal: 0.25s ease;

    /* Spacing scale */
    --space-xs:  4px;
    --space-sm:  8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    background-image:
        linear-gradient(rgba(20,10,5,0.75), rgba(20,10,5,0.85)),
        url(e62f9f9776b9b9496d6b.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

hr.divider {
    margin: var(--space-md) 0;
    border: none;
    border-top: 1px solid var(--color-border);
}

/* Focus ring */
:focus-visible {
    outline: 2px solid var(--color-brand-start);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

fieldset {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    border: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-primary);
}

/* Hero */
.hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    text-align: center;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--color-text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Section title inside form */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 600;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-icon {
    font-size: 1.1em;
    line-height: 1;
}

.required {
    color: var(--color-danger);
    font-weight: 700;
}

.optional-tag {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 1px 8px;
    line-height: 1.8;
    margin-left: var(--space-xs);
}

/* Instructions */
.instructions-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.instructions-list {
    padding-left: 1.4em;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.instructions-list strong {
    color: var(--color-text-primary);
}

.marmita-descricao {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: block;
    margin-top: 4px;
}

/* ============================================
   HEADER
   ============================================ */

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(var(--space-md), 4vw, var(--space-xl));
    background: rgba(20, 10, 5, 0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-logo {
    font-size: 1.6rem;
    line-height: 1;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}

/* Cart button */
.btn-carrinho {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    color: var(--color-text-primary);
    transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
    min-width: 48px;
    min-height: 44px;
}

.btn-carrinho svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-carrinho:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-strong);
    transform: translateY(-2px);
}

.btn-carrinho:active {
    transform: translateY(0);
}

/* Cart badge */
.badge-carrinho {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-brand-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    min-width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--color-bg-dark);
    animation: badge-pop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badge-pop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

/* ============================================
   INPUT FIELDS
   ============================================ */

.field-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.field-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.field-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 12px var(--space-md);
    width: 100%;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.field-input::placeholder {
    color: var(--color-text-muted);
}

.field-input:hover {
    border-color: var(--color-border-strong);
    background: rgba(255,255,255,0.08);
}

.field-input:focus {
    outline: none;
    border-color: var(--color-brand-start);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(232,135,58,0.18);
}

/* Time input adjustments */
input[type="time"].field-input {
    color-scheme: dark;
}

/* ============================================
   BUTTONS
   ============================================ */

/* Primary CTA — add to cart */
.btn-adicionar-carrinho {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 16px var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    letter-spacing: 0.02em;
    min-height: 52px;
    margin-top: var(--space-md);
}

.btn-adicionar-carrinho svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-adicionar-carrinho.habilitado {
    background: var(--color-brand-gradient);
    color: #fff;
    box-shadow: var(--shadow-button);
}

.btn-adicionar-carrinho.habilitado:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(232,135,58,0.5);
}

.btn-adicionar-carrinho.habilitado:active {
    transform: translateY(0);
}

.btn-adicionar-carrinho.desabilitado {
    background: rgba(255,255,255,0.06);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    cursor: not-allowed;
    pointer-events: none;
}

/* Cart modal buttons */
.btn-finalizar {
    flex: 1;
    padding: 14px var(--space-lg);
    background: var(--color-brand-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-height: 48px;
    box-shadow: var(--shadow-button);
}

.btn-finalizar:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-finalizar:active {
    transform: translateY(0);
}

.btn-finalizar--disabled,
.btn-finalizar:disabled {
    background: rgba(255,255,255,0.06);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    filter: none;
    transform: none;
}

.btn-continuar {
    flex: 1;
    padding: 14px var(--space-lg);
    background: rgba(255,255,255,0.08);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.btn-continuar:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--color-brand-start);
    color: var(--color-accent);
}

/* Modal action buttons */
.btn-confirmar {
    background: var(--color-success);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px var(--space-lg);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter var(--transition-fast);
    flex: 1;
    min-height: 44px;
}

.btn-confirmar:hover { filter: brightness(1.1); }

.btn-cancelar {
    background: rgba(255,255,255,0.08);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px var(--space-lg);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
    flex: 1;
    min-height: 44px;
}

.btn-cancelar:hover { background: rgba(255,255,255,0.12); }

.btn-fechar-modal {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-secondary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
}

.btn-fechar-modal:hover {
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.08);
}

/* Remove from cart button */
.btn-remover {
    background: none;
    border: none;
    color: var(--color-danger);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    flex-shrink: 0;
    line-height: 1;
}

.btn-remover:hover {
    background: rgba(229,57,53,0.15);
}

/* Edit cart item button */
.btn-editar {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    font-size: 1.05rem;
    padding: 0;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
    line-height: 1;
}

.btn-editar:hover {
    background: rgba(232, 135, 58, 0.15);
    color: var(--color-accent);
}

/* Action buttons cell in cart table */
.cart-acoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap;
}


/* ============================================
   MAIN LAYOUT & PAGE STRUCTURE
   ============================================ */

.main-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding-top: calc(64px + var(--space-xl)); /* header height + breathing room */
    padding-bottom: clamp(60px, 12vh, 100px);
    padding-left: clamp(var(--space-md), 4vw, var(--space-xl));
    padding-right: clamp(var(--space-md), 4vw, var(--space-xl));
}

/* Hero */
.hero-section {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-xl) 0 var(--space-md);
}

/* Instructions card */
.instructions-card {
    background: var(--color-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* Closed notice */
.closed-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(229,57,53,0.12);
    border: 1px solid rgba(229,57,53,0.35);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: #ffcdd2;
    margin-bottom: var(--space-lg);
}

.closed-notice[hidden] { display: none; }

.closed-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.closed-notice strong {
    font-size: 1.05rem;
    color: #ef9a9a;
}

.closed-notice p {
    font-size: 0.9rem;
    margin-top: var(--space-xs);
    color: #ffcdd2;
}

/* Order form */
.order-form {
    background: var(--color-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: clamp(var(--space-lg), 5vw, var(--space-xl));
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-card);
}

.order-form[hidden] { display: none; }

/* Form sections */
.form-section {
    padding: var(--space-md) 0;
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.field-group--full {
    grid-column: 1 / -1;
}

/* Order value preview */
.order-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(232,135,58,0.10);
    border: 1px solid rgba(232,135,58,0.25);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
    gap: var(--space-md);
}

.order-preview[hidden] { display: none; }

.order-preview__label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.order-preview__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ============================================
   CARNES SECTION — opacity-based transitions
   ============================================ */

#carnes-section {
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

#carnes-section.section-restricted {
    opacity: 0.35;
    pointer-events: none;
}

/* ============================================
   CART BUTTON PULSE (replaces inline style)
   ============================================ */

.cart-btn-pulse {
    transform: scale(1.25);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   MENU OPTION CARDS (carnes, acompanhamentos, bebidas)
   ============================================ */

.menu-items-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-multi-select {
    width: 100%;
    min-height: 140px;
    max-height: 220px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: calc(var(--radius-md) * 1.1);
    color: var(--color-text-primary);
    font: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    cursor: pointer;
    overflow: auto;
    -webkit-appearance: none;
    appearance: none;
}

.menu-filter-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.menu-filter-select:hover {
    background: rgba(255, 255, 255, 0.10);
}

.menu-filter-select:focus {
    border-color: var(--color-select);
    box-shadow: 0 0 0 3px rgba(232, 135, 58, 0.15);
}

.menu-filter-select option {
    padding: 8px 12px;
    line-height: 1.4;
    color: var(--color-text-primary);
    background: transparent;
}

.menu-filter-select option:disabled {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.searchable-select-container {
    position: relative;
    width: 100%;
}

.searchable-select-input-wrapper {
    position: relative;
    width: 100%;
}

.searchable-select-input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    cursor: text;
}

.searchable-select-input:hover {
    background: rgba(255, 255, 255, 0.10);
}

.searchable-select-input:focus {
    border-color: var(--color-select);
    box-shadow: 0 0 0 3px rgba(232, 135, 58, 0.15);
}

.searchable-select-input::placeholder {
    color: var(--color-text-secondary);
}

.searchable-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 6px;
    background: rgba(26, 14, 9, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.searchable-select-dropdown--open {
    display: block;
}

.searchable-select-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition-fast);
}

.searchable-select-option:last-child {
    border-bottom: none;
}

.searchable-select-option:hover {
    background: rgba(232, 135, 58, 0.12);
}

.searchable-select-option__label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.searchable-select-option__price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.85rem;
}

.searchable-select-option__desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.searchable-select-no-results {
    padding: 16px 14px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.searchable-select-dropdown::-webkit-scrollbar {
    width: 8px;
}

.searchable-select-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.searchable-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(227, 19, 82, 0.4);
    border-radius: 999px;
}

.searchable-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 19, 82, 0.6);
}


.filter-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
}

.filter-chips-container:empty {
    display: none;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(227, 19, 82, 0.12);
    border: 1px solid rgba(227, 19, 82, 0.28);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.filter-chip__label {
    font-weight: 500;
}

.filter-chip__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
}

.filter-chip__remove:hover {
    color: var(--color-select);
    transform: scale(1.15);
}


.menu-multi-select option {
    padding: 10px 12px;
    line-height: 1.5;
    color: var(--color-text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: pre;
    font-family: monospace;
    text-align: left;
}

.menu-multi-select option:last-child {
    border-bottom: none;
}

.menu-multi-select option:hover,
.menu-multi-select option:focus {
    background: rgba(232, 135, 58, 0.08);
    color: var(--color-text-primary);
}

.menu-multi-select option:checked {
    background: rgba(227, 19, 82, 0.18) !important;
    color: var(--color-text-primary) !important;
}

.menu-multi-select option:checked:hover,
.menu-multi-select option:checked:focus {
    background: rgba(227, 19, 82, 0.28) !important;
}

.menu-multi-select::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.menu-multi-select::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.menu-multi-select::-webkit-scrollbar-thumb {
    background: rgba(227, 19, 82, 0.35);
    border-radius: 999px;
}

.menu-multi-select::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 19, 82, 0.55);
}

.menu-multi-select {
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 19, 82, 0.35) rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .menu-multi-select {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .menu-multi-select::-webkit-scrollbar {
        display: none;
    }
}

/* Generic menu item card */
.opcao-consumo-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    user-select: none;
}

.opcao-consumo-item:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-strong);
    transform: translateX(3px);
}

.opcao-consumo-item input[type="radio"],
.opcao-consumo-item input[type="checkbox"] {
    display: none;
}

.opcao-consumo-item input[type="radio"]:checked~*,
.opcao-consumo-item input[type="checkbox"]:checked~* {
    color: var(--color-text-primary);
}

.opcao-consumo-item:has(input:checked) {
    background: rgba(232, 135, 58, 0.10);
    border-color: var(--color-select);
}

/* "Select all" master checkbox card */
.opcao-select-all {
    border-style: dashed;
    border-color: rgba(232, 135, 58, 0.35);
    background: rgba(232, 135, 58, 0.04);
    margin-bottom: var(--space-xs);
}

.opcao-select-all .menu-item-nome {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.opcao-select-all:has(input:checked) {
    background: rgba(232, 135, 58, 0.14);
    border-color: var(--color-select);
    border-style: solid;
}

/* Item info layout */
.menu-item-info {
    display: flex;
    flex-direction: row;
    flex: 1;
    min-width: 0;
}

.menu-item-nome {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.menu-item-preco {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-left: auto;
}

/* Loading placeholder */
.menu-loading {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: var(--space-md);
    text-align: center;
}

/* ============================================
   PAYMENT METHOD OPTIONS
   ============================================ */

.opcoes-pagamento {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    border: none;
}

.opcao-pagamento {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    min-width: 90px;
    padding: 14px var(--space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    user-select: none;
}

.opcao-pagamento input[type="radio"] {
    display: none;
}

.opcao-pagamento__icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.opcao-pagamento:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-strong);
    color: var(--color-text-primary);
}

.opcao-pagamento:has(input:checked) {
    background: rgba(232, 135, 58, 0.12);
    border-color: var(--color-select);
    color: var(--color-text-primary);
}

/* ============================================
   MARMITA SIZE OPTIONS
   ============================================ */


.opcao-marmita {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    min-width: 100px;
    padding: var(--space-md) var(--space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    user-select: none;
    text-align: center;
}

.opcao-marmita input[type="radio"] {
    display: none;
}

.opcao-marmita:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-strong);
}

.opcao-marmita:has(input:checked) {
    background: rgba(232, 135, 58, 0.12);
    border-color: var(--color-select);
    box-shadow: 0 0 0 3px rgba(232, 135, 58, 0.12);
}

.marmita-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.marmita-nome {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.marmita-preco {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ============================================
   CARNE DUPLICATE QTY CONTROL
   (only shown for marmita grande)
   ============================================ */

/* Wrapper — sits as a flex child inside .opcao-consumo-item, pushed to the right */
.carne-qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-left: 10px;
    flex-shrink: 0;
}

/*
 * IMPORTANT: `display: flex` above (author stylesheet) overrides the browser's
 * UA `[hidden] { display: none }` because author rules win the cascade when
 * specificity is equal. This explicit rule restores the correct behaviour.
 */
.carne-qty-control[hidden] {
       display:none;
}       

/* Circular badge showing current quantity (1 or 2) */
.carne-qty-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(232, 135, 58, 0.15);
    border: 1px solid rgba(232, 135, 58, 0.45);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: background var(--transition-fast), border-color var(--transition-fast);
    user-select: none;
}

/* The '+' button */
.carne-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1.5px solid var(--color-accent);
    border-radius: 50%;
    background: transparent;
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast),
                border-color var(--transition-fast), opacity var(--transition-fast);
    flex-shrink: 0;
}

.carne-qty-btn:hover:not(:disabled) {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 8px rgba(232, 135, 58, 0.4);
}

.carne-qty-btn:active:not(:disabled) {
    transform: scale(0.93);
}

/* Disabled / max-reached state */
.carne-qty-btn:disabled,
.carne-qty-btn--max {
    border-color: var(--color-border-strong);
    color: var(--color-text-muted);
    cursor: not-allowed;
    opacity: 0.45;
}

/* ============================================
   QUANTITY SELECTOR
   ============================================ */

.quantidade-container {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.btn-quantidade {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    padding: 0 var(--space-md);
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
    user-select: none;
}

.btn-quantidade:hover {
    background: rgba(232,135,58,0.15);
    color: var(--color-accent);
}

.btn-quantidade:active {
    background: rgba(232,135,58,0.25);
}

.quantidade-input {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    width: 56px;
    height: 48px;
    outline: none;
    cursor: default;
    pointer-events: none;
}

/* Hide number input spinners */
.quantidade-input::-webkit-inner-spin-button,
.quantidade-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ============================================
   CART TABLE & SUMMARY
   ============================================ */

/* On desktop the wrapper is neutral; mobile overrides remove the table layout */
.carrinho-table-wrapper {
    width: 100%;
}

.carrinho-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    color: var(--color-text-primary);
}

.carrinho-table thead th {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    white-space: nowrap;
}

.carrinho-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.carrinho-table tbody tr:last-child {
    border-bottom: none;
}

.carrinho-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}

.carrinho-table td {
    padding: 10px var(--space-sm);
    vertical-align: middle;
}

.carrinho-table td:last-child {
    text-align: center;
    white-space: nowrap;
    width: 1%;          /* shrink to content */
    padding-left: 4px;
    padding-right: 4px;
}

/* Cart item description cell */
.cart-item-desc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-nome {
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-item-detalhes {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Subtotal / Total summary */
.carrinho-resumo {
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.resumo-total {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    border-top: 1px solid var(--color-border-strong);
    padding-top: var(--space-sm);
    margin-top: var(--space-xs);
}

.resumo-total dd {
    color: var(--color-accent);
    font-size: 1.15rem;
}

/* Empty cart state */
.carrinho-vazio {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    color: var(--color-text-muted);
}

.carrinho-vazio[hidden] { display: none; }

.carrinho-vazio__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
}

.carrinho-vazio__hint {
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

#carrinho-conteudo:empty + .carrinho-vazio {
    display: block;
}


/* ============================================
   MODALS (CART, RESUMO, FEEDBACK)
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(var(--space-md), 3vw, var(--space-xl));
    overflow-y: auto;
    animation: overlay-in 0.2s ease;
}

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

@keyframes overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Shared modal panel base */
.modal-carrinho,
.modal-resumo,
.modal-feedback {
    background: #1e1109;
    background: linear-gradient(160deg, #241309 0%, #1a0e09 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-modal);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    animation: modal-slide-up 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes modal-slide-up {
    from { transform: translateY(32px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ===== CART MODAL ===== */
.modal-carrinho {
    max-width: min(95vw, 680px);
    padding: var(--space-lg) clamp(var(--space-md), 4vw, var(--space-lg));
    gap: var(--space-md);
}

.modal-carrinho-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.modal-carrinho-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: var(--color-text-primary);
    font-weight: 700;
}

.modal-carrinho-botoes {
    display: flex;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
    flex-wrap: wrap;
}

/* ===== RESUMO MODAL ===== */
.modal-resumo {
    max-width: min(95vw, 520px);
    padding: clamp(var(--space-lg), 4vw, var(--space-xl));
}

.modal-resumo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.resumo-info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.resumo-info-linha {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-sm);
    gap: var(--space-md);
}

.resumo-info-linha:last-child {
    border-bottom: none;
}

.resumo-info-linha .destaque {
    font-weight: 600;
    color: var(--color-text-primary);
    flex-shrink: 0;
}

.resumo-info-linha .valor {
    text-align: right;
    color: var(--color-text-primary);
}

/* ===== PEDIDO CARDS (order item breakdown) ===== */

.resumo-pedidos-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.resumo-pedido-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.resumo-pedido-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2px;
}

.resumo-pedido-item {
    font-size: 0.88rem;
    color: var(--color-text-primary);
    line-height: 1.5;
}

.resumo-pedido-label {
    font-weight: 600;
    color: var(--color-text-muted);
    margin-right: 4px;
}

.resumo-pedido-valor {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
    padding-top: 6px;
    border-top: 1px solid var(--color-border);
    margin-top: 2px;
}

.resumo-total-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(232,135,58,0.10);
    border: 1px solid rgba(232,135,58,0.25);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.resumo-total-linha .total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.resumo-total-linha .total-valor {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: color 0.2s ease;
}

/* Strikethrough for crossed-out delivery fee */
.valor-riscado {
    text-decoration: line-through;
    color: var(--color-text-muted) !important;
    opacity: 0.6;
}

/* Pickup checkbox in resumo modal */
.resumo-retirada-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px var(--space-md);
    margin-bottom: var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: background var(--transition-fast), border-color var(--transition-fast);
    user-select: none;
}

.resumo-retirada-label:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-strong);
}

.resumo-retirada-label:has(input:checked) {
    background: rgba(232, 135, 58, 0.10);
    border-color: var(--color-select);
}

.resumo-retirada-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-select);
    cursor: pointer;
    flex-shrink: 0;
}

.modal-botoes {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ===== FEEDBACK MODAL (success / error) ===== */
.modal-feedback {
    max-width: min(95vw, 440px);
    padding: clamp(var(--space-lg), 4vw, var(--space-xl));
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.feedback-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.feedback-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.feedback-message {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.feedback-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    width: 100%;
    margin-top: var(--space-sm);
}


/* ============================================
   RESPONSIVE — MOBILE FIRST ADJUSTMENTS
   ============================================ */

/* Tablet and smaller */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-group--full {
        grid-column: auto;
    }

    .opcoes-pagamento {
        flex-direction: row;
    }

    .opcao-pagamento {
        min-width: 70px;
        padding: 10px var(--space-xs);
        font-size: 0.8rem;
    }

    .marmita-fieldset {
        flex-direction: row;
    }

    .opcao-marmita {
        min-width: 80px;
        padding: var(--space-sm);
    }

    .marmita-nome {
        font-size: 0.85rem;
    }

    .marmita-preco {
        font-size: 0.78rem;
    }

    .modal-carrinho-botoes {
        flex-direction: column;
    }

    .btn-finalizar,
    .btn-continuar {
        width: 100%;
    }

    /* ── Cart table → card layout ── */
    /* Break the <table> display model so rows become flex cards */
    .carrinho-table,
    .carrinho-table tbody {
        display: block;
        width: 100%;
    }

    /* Hide the header row — labels are shown inline via ::before */
    .carrinho-table thead {
        display: none;
    }

    /* Each row becomes a 2-row flex card */
    .carrinho-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        padding: 10px 12px;
        margin-bottom: 8px;
        gap: 0;
    }

    .carrinho-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .carrinho-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* All cells reset */
    .carrinho-table td {
        display: block;
        padding: 0;
        border: none;
        background: none;
    }

    /* ── Row 1: description (left) + actions (right) ── */
    /* Description cell fills the row minus space for action buttons */
    .carrinho-table td:nth-child(1) {
        flex: 1 1 calc(100% - 88px);
        padding-right: 8px;
        padding-bottom: 6px;
        order: 1;
    }

    /* Action buttons anchored to the right, spanning both rows */
    .carrinho-table td:nth-child(5) {
        flex: 0 0 80px;
        order: 2;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 6px;
    }

    /* ── Row 2: qty + subtotal inline ── */
    /* Qty */
    .carrinho-table td:nth-child(2) {
        flex: 0 0 auto;
        order: 3;
        font-size: 0.78rem;
        color: var(--color-text-secondary);
        padding-right: 12px;
    }

    .carrinho-table td:nth-child(2)::before {
        content: "Qtd: ";
        font-weight: 600;
        font-size: 0.7rem;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* Unit price — hidden on mobile (redundant with subtotal) */
    .carrinho-table td:nth-child(3) {
        display: none;
    }

    /* Subtotal */
    .carrinho-table td:nth-child(4) {
        flex: 0 0 auto;
        order: 4;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--color-accent);
    }

    .carrinho-table td:nth-child(4)::before {
        content: "Total: ";
        font-weight: 400;
        font-size: 0.7rem;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* Action buttons stay a fixed row, no column stacking needed */
    .cart-acoes {
        flex-direction: row;
        gap: 4px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .header-title {
        display: none; /* save space, logo remains */
    }

    /* Slightly tighter cards on tiny screens */
    .carrinho-table tbody tr {
        padding: 8px 10px;
    }

    .cart-item-nome {
        font-size: 0.82rem;
    }

    .cart-item-detalhes {
        font-size: 0.68rem;
    }

    .btn-editar,
    .btn-remover {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 0.9rem;
    }
}

/* Landscape phones */
@media (max-width: 600px) and (orientation: landscape) {
    .hero-section {
        padding: var(--space-lg) 0 var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .modal-overlay {
        align-items: flex-start;
        padding-top: var(--space-md);
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .main-wrapper {
        max-width: 720px;
    }
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header-top,
    .btn-carrinho,
    .btn-adicionar-carrinho,
    .modal-carrinho-botoes,
    .btn-fechar-modal,
    .instructions-card {
        display: none !important;
    }

    body {
        background: white !important;
        color: #000 !important;
        font-size: 12px;
    }

    .main-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .order-form {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .modal-carrinho,
    .modal-resumo {
        background: white;
        border: none;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }
}

/* ============================================
   MAIN STYLESHEET - IMPORTS ALL MODULES
   ============================================ */

/* ============================================
   NOTE: All styles are organized in separate
   module files for easier debugging and maintenance.
   
   File Organization:
   - _base.css: Reset and base styles
   - _typography.css: Headings
   - _header.css: Header and cart button
   - _inputs.css: Input fields
   - _buttons.css: Button styles
   - _forms.css: Form controls
   - _options.css: Radio buttons and selections
   - _quantity.css: Quantity selector
   - _cart.css: Cart table and summary
   - _modals.css: Modal overlays
   - _responsive.css: Media queries
   - _print.css: Print-specific styles
   ============================================ */

