
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}


.pr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.pr-header-inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

.pr-voltar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50%;
}

.pr-voltar:active {
    background: var(--border-light);
}

.pr-voltar svg {
    width: 22px;
    height: 22px;
}

.pr-header-titulo {
    font-size: 16px;
    font-weight: 600;
}


.pr-trilho {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px 32px;
}

.pr-intro {
    padding-top: 18px;
}

.pr-intro h1 {
    font-size: 20px;
    font-weight: 700;
}

.pr-intro p {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin-top: 2px;
}


.pr-bene {
    display: flex;
    gap: 8px;
    padding: 14px 0 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pr-bene::-webkit-scrollbar {
    display: none;
}

.pr-bene-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 9px 12px;
    flex-shrink: 0;
}

.pr-bene-chip svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.pr-bene-chip--pts svg { color: #f59e0b; }
.pr-bene-chip--cash svg { color: var(--success); }

.pr-bene-chip .titulo {
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.2;
}

.pr-bene-chip .sub {
    font-size: 10.5px;
    color: var(--text-secondary);
}


.pr-rotulo {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 14px 0 2px;
}

.pr-prod {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}

.pr-prod:last-child {
    border-bottom: 0;
}

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

.pr-prod-nome {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.pr-prod-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-precos {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.pr-preco-novo {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.pr-preco-velho {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
}

.pr-selos {
    display: flex;
    gap: 6px;
    margin-top: 7px;
    flex-wrap: wrap;
}

.pr-selo {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pr-selo svg {
    width: 11px;
    height: 11px;
}

.pr-selo--off {
    background: var(--primary-light);
    color: var(--primary);
}

.pr-selo--cash {
    background: var(--success-light);
    color: var(--success);
}

.pr-selo--timer {
    background: var(--warning-light);
    color: var(--warning);
    font-variant-numeric: tabular-nums;
}

.pr-foto-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.pr-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: var(--border-light);
    display: block;
}

.pr-prod--esgotado {
    opacity: 0.6;
}

.pr-faixa-esgotado {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    padding: 3px 0;
    border-radius: 0 0 10px 10px;
}


.pr-vazio {
    text-align: center;
    padding: 44px 24px;
}

.pr-vazio svg {
    width: 52px;
    height: 52px;
    color: var(--border);
    margin-bottom: 10px;
}

.pr-vazio h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pr-vazio p {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pr-btn-cardapio {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
}

.pr-btn-cardapio:hover {
    filter: brightness(0.9);
}


@media (min-width: 992px) {
    .pr-header-inner {
        padding: 14px 28px;
    }

    .pr-trilho {
        padding: 0 28px 40px;
    }

    .pr-grade {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        padding-top: 4px;
    }

    .pr-grade .pr-prod {
        padding: 16px 0;
    }

    .pr-grade .pr-prod:last-child {
        border-bottom: 1px solid var(--border-light);
    }
}
