/* ===========================================
   CARD�PIO DIGITAL - CSS LIMPO E SIMPLES
   =========================================== */

.cardapio-produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.cardapio-produto-item {
    display: grid;
    grid-template-columns: 80px 1fr 90px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
}

/* Produto em destaque - borda amarela tracejada */
.cardapio-produto-item.produto-destaque {
    border: 2px dashed #eeee22;
    box-shadow: 0 0 10px rgba(238, 238, 34, 0.3);
}

.produto-imagem {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.produto-imagem::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, #3a3a3a 0px, #3a3a3a 4px, transparent 4px, transparent 8px);
}

.produto-imagem img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.produto-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.produto-info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, #3a3a3a 0px, #3a3a3a 4px, transparent 4px, transparent 8px);
}

.produto-titulo {
    font-size: 15px;
    color: #FFFFFF;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.produto-descricao {
    font-size: 11px;
    color: #929292;
    margin: 0;
    line-height: 1.3;
}

.produto-precos {
    display: flex;
    flex-direction: column;
    width: 90px;
    min-width: 90px;
    flex-shrink: 0;
}

.preco-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    position: relative;
    min-height: 40px;
}

.preco-container + .preco-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(to right, #3a3a3a 0px, #3a3a3a 4px, transparent 4px, transparent 8px);
}

.preco-label {
    background: #ED204B;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 4px;
    white-space: nowrap;
    line-height: 1.2;
}

.preco-valor {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cardapio-produto-item { grid-template-columns: 70px 1fr 85px; }
    .produto-imagem { padding: 10px; }
    .produto-imagem img { width: 50px; height: 50px; }
    .produto-info { padding: 10px 12px; }
    .produto-titulo { font-size: 14px; }
    .produto-descricao { font-size: 10px; }
}
