.cb-resumo-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: inherit;
}

.cb-resumo-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.cb-resumo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.cb-resumo-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.cb-resumo-item .label {
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 10px;
}

.cb-resumo-item .value {
    text-align: right;
    color: #2c3e50;
}

.cb-resumo-item .price {
    font-weight: 600;
    color: #27ae60;
    margin-left: 10px;
    white-space: nowrap;
}

.cb-resumo-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #f0f0f0;
    margin-top: 15px;
    padding-top: 15px;
}

.cb-resumo-total .label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.cb-resumo-total .value {
    font-size: 20px;
    font-weight: 800;
    color: #e67e22;
}

.cb-resumo-total .value.loading {
    opacity: 0.5;
    position: relative;
}

.cb-resumo-total .value.loading:after {
    content: "...";
    position: absolute;
    right: -20px;
}

.cb-resumo-note {
    font-size: 12px;
    color: #888;
    margin: 15px 0 0 0;
    font-style: italic;
}

.cb-resumo-empty {
    color: #999;
    text-align: center;
    padding: 10px 0;
    font-style: italic;
}

/* Modal / Loader state if needed */
.cb-resumo-wrap {
    position: relative;
}

@media (max-width: 768px) {
    .cb-resumo-card {
        padding: 15px;
        background-color: #ffffff !important; /* Força fundo claro no mobile */
        color: #333333 !important;
        border: 1px solid #ddd;
    }
    .cb-resumo-title {
        color: #222 !important;
        border-bottom-color: #eee;
    }
    .cb-resumo-item .label, .cb-resumo-item .value {
        color: #444 !important;
    }
    .cb-resumo-total .label {
        color: #222 !important;
    }
    .cb-resumo-total .value {
        color: #e67e22 !important; /* Mantém o destaque do total */
    }
    .cb-resumo-note {
        color: #666 !important;
    }
}
